Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hyperjump/json-pointer

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hyperjump/json-pointer - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

4

json-pointer.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc