@hyperjump/json-pointer
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -22,4 +22,4 @@ const curry = require("just-curry-it"); | ||
const escape = (segment) => segment.toString().replace("~", "~0").replace("/", "~1"); | ||
const unescape = (segment) => segment.toString().replace("~0", "~").replace("~1", "/"); | ||
const escape = (segment) => segment.toString().replace(/~/g, "~0").replace(/\//g, "~1"); | ||
const unescape = (segment) => segment.toString().replace(/~0/g, "~").replace(/~1/g, "/"); | ||
@@ -26,0 +26,0 @@ const applySegment = (value, segment, pointer = "") => { |
{ | ||
"name": "@hyperjump/json-pointer", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "An RFC-6901 JSON Pointer implementation", | ||
@@ -5,0 +5,0 @@ "main": "./json-pointer.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3633