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

@stoplight/json

Package Overview
Dependencies
Maintainers
18
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stoplight/json - npm Package Compare versions

Comparing version 3.1.2 to 3.2.0

__tests__/getFirstPrimitiveProperty.d.ts

2

index.cjs.js

@@ -1,1 +0,1 @@

"use strict";function _interopDefault(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var jsoncParser=require("jsonc-parser"),types=require("@stoplight/types"),fastStringify=_interopDefault(require("safe-stable-stringify")),lodash=require("lodash");const replaceInString=(e,t,r)=>{const n=e.toString();let o="",i=n,a=0,s=i.indexOf(t);for(;s>-1;)o+=n.substring(a,a+s)+r,i=i.substring(s+t.length,i.length),a+=s+t.length,s=i.indexOf(t);return i.length>0&&(o+=n.substring(n.length-i.length,n.length)),o},decodePointer=e=>replaceInString(replaceInString(decodeURIComponent(""+e),"~1","/"),"~0","~"),decodePointerFragment=e=>replaceInString(replaceInString(e,"~1","/"),"~0","~"),encodePointer=e=>replaceInString(replaceInString(e,"~","~0"),"//","/~1"),encodePointerFragment=e=>"number"==typeof e?e:replaceInString(replaceInString(e,"~","~0"),"/","~1"),getJsonPathForPosition=({lineMap:e,ast:t},r)=>{const n=e[r.line],o=e[r.line+1];if(void 0===n)return;const i=jsoncParser.findNodeAtOffset(t,void 0===o?n+r.character:Math.min(o,n+r.character),!0);if(void 0===i)return;const a=jsoncParser.getNodePath(i);return 0!==a.length?a:void 0};function getLastPathSegment(e){return decodePointerFragment(e.split("/").pop()||"")}const getLocationForJsonPath=({lineMap:e,ast:t},r,n=!1)=>{const o=findNodeAtPath(t,r,n);if(void 0!==o&&void 0!==o.range)return{range:o.range}};function findNodeAtPath(e,t,r){e:for(const n of t){const t=Number.isInteger(Number(n))?Number(n):n;if("string"==typeof t||"number"==typeof t&&"array"!==e.type){if("object"!==e.type||!Array.isArray(e.children))return r?e:void 0;for(const r of e.children)if(Array.isArray(r.children)&&r.children[0].value===String(t)){e=r.children[1];continue e}return r?e:void 0}if("array"!==e.type||t<0||!Array.isArray(e.children)||t>=e.children.length)return r?e:void 0;e=e.children[t]}return e}const parseWithPointers=(e,t={disallowComments:!0})=>{const r=[],{ast:n,data:o,lineMap:i}=parseTree(e,r,t);return{data:o,diagnostics:r,ast:n,lineMap:i}};function parseTree(e,t=[],r){const n=computeLineMap(e);let o={type:"array",offset:-1,length:-1,children:[],parent:void 0},i=null,a=[];const s=[""],p=[];function c(e){"property"===o.type&&(o.length=e-o.offset,o=o.parent)}function f(e,t,r){return{start:{line:e,character:t},end:{line:e,character:t+r}}}function g(e){return o.children.push(e),e}function l(e){Array.isArray(a)?a.push(e):null!==i&&(a[i]=e)}function u(e){l(e),p.push(a),a=e,i=null}function d(){a=p.pop()}const h={onObjectBegin:(e,t,n,i)=>{o=g({type:"object",offset:e,length:-1,parent:o,children:[],range:f(n,i,t)}),!1===r.ignoreDuplicateKeys&&(s.length=0),u({})},onObjectProperty:(e,n,a,p,c)=>{(o=g({type:"property",offset:n,length:-1,parent:o,children:[]})).children.push({type:"string",value:e,offset:n,length:a,parent:o}),!1===r.ignoreDuplicateKeys&&(0!==s.length&&s.includes(e)?t.push({range:f(p,c,a),message:"DuplicateKey",severity:types.DiagnosticSeverity.Error,path:getJsonPath(o),code:20}):s.push(e)),i=e},onObjectEnd:(e,t,r,n)=>{o.length=e+t-o.offset,o.range&&(o.range.end.line=r,o.range.end.character=n+t),o=o.parent,c(e+t),d()},onArrayBegin:(e,t,r,n)=>{o=g({type:"array",offset:e,length:-1,parent:o,children:[],range:f(r,n,t)}),u([])},onArrayEnd:(e,t,r,n)=>{o.length=e+t-o.offset,o.range&&(o.range.end.line=r,o.range.end.character=n+t),o=o.parent,c(e+t),d()},onLiteralValue:(e,t,r,n,i)=>{g({type:getLiteralNodeType(e),offset:t,length:r,parent:o,value:e,range:f(n,i,r)}),c(t+r),l(e)},onSeparator:(e,t,r)=>{"property"===o.type&&(":"===e?o.colonOffset=t:","===e&&c(t))},onError:(e,r,n,o,i)=>{t.push({range:f(o,i,n),message:jsoncParser.printParseErrorCode(e),severity:types.DiagnosticSeverity.Error,code:e})}};jsoncParser.visit(e,h,r);const y=o.children[0];return y&&delete y.parent,{ast:y,data:a[0],lineMap:n}}function getLiteralNodeType(e){switch(typeof e){case"boolean":return"boolean";case"number":return"number";case"string":return"string";default:return"null"}}const computeLineMap=e=>{const t=[0];let r=0;for(;r<e.length;r++)"\n"===e[r]&&t.push(r+1);return t.push(r+1),t};function getJsonPath(e,t=[]){return"property"===e.type&&t.unshift(e.children[0].value),void 0!==e.parent?("array"===e.parent.type&&void 0!==e.parent.parent&&t.unshift(e.parent.children.indexOf(e)),getJsonPath(e.parent,t)):t}const pathToPointer=e=>encodeUriFragmentIdentifier(e),encodeUriFragmentIdentifier=e=>{if(e&&"object"!=typeof e)throw new TypeError("Invalid type: path must be an array of segments.");return 0===e.length?"#":`#/${e.map(encodePointerFragment).join("/")}`},pointerToPath=e=>decodeUriFragmentIdentifier(e),decodeFragmentSegments=e=>{const t=e.length,r=[];let n=-1;for(;++n<t;)r.push(decodePointer(e[n]));return r},decodeUriFragmentIdentifier=e=>{if("string"!=typeof e)throw new TypeError("Invalid type: JSON Pointers are represented as strings.");if(0===e.length||"#"!==e[0])throw new URIError("Invalid JSON Pointer syntax; URI fragment identifiers must begin with a hash.");if(1===e.length)return[];if("/"!==e[1])throw new URIError("Invalid JSON Pointer syntax.");return decodeFragmentSegments(e.substring(2).split("/"))},renameObjectKey=(e,t,r)=>{if(!e||!e[t]||t===r)return e;const n={};for(const[o,i]of Object.entries(e))o===t?n[r]=i:o in n||(n[o]=i);return n},safeParse=(e,t)=>{if("string"!=typeof e)return e;try{const r=parseNumber(e);return"string"==typeof r?r:JSON.parse(e,t)}catch(e){return}},parseNumber=e=>{const t=Number(e);return Number.isFinite(t)?String(t)===e?t:e:NaN},safeStringify=(e,t,r)=>{if("string"==typeof e)return e;try{return JSON.stringify(e,t,r)}catch(n){return fastStringify(e,t,r)}},startsWith=(e,t)=>{if(e instanceof Array){if(t instanceof Array){if(t.length>e.length)return!1;for(const r in t){if(!t.hasOwnProperty(r))continue;const n=parseInt(e[r]),o=parseInt(t[r]);if(isNaN(n)&&isNaN(o)){if(e[r]!==t[r])return!1}else if(n!==o)return!1}}}else{if("string"!=typeof e)return!1;if("string"==typeof t)return e.startsWith(t)}return!0};function toPropertyPath(e){return e.replace(/^(\/|#\/)/,"").split("/").map(decodePointerFragment).map(sanitize).join(".")}function sanitize(e){return e.includes(".")?`["${e.replace(/"/g,'\\"')}"]`:e}function trimStart(e,t){if("string"==typeof e&&"string"==typeof t)return lodash.trimStart(e,t);if(!(e&&Array.isArray(e)&&e.length&&t&&Array.isArray(t)&&t.length))return e;let r=0;for(const n in e)if(e.hasOwnProperty(n)){if(e[n]!==t[n])break;r++}return e.slice(r)}exports.decodePointer=decodePointer,exports.decodePointerFragment=decodePointerFragment,exports.encodePointer=encodePointer,exports.encodePointerFragment=encodePointerFragment,exports.getJsonPathForPosition=getJsonPathForPosition,exports.getLastPathSegment=getLastPathSegment,exports.getLocationForJsonPath=getLocationForJsonPath,exports.parseTree=parseTree,exports.parseWithPointers=parseWithPointers,exports.pathToPointer=pathToPointer,exports.pointerToPath=pointerToPath,exports.renameObjectKey=renameObjectKey,exports.safeParse=safeParse,exports.safeStringify=safeStringify,exports.startsWith=startsWith,exports.toPropertyPath=toPropertyPath,exports.trimStart=trimStart;
"use strict";function _interopDefault(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var jsoncParser=require("jsonc-parser"),types=require("@stoplight/types"),fastStringify=_interopDefault(require("safe-stable-stringify")),lodash=require("lodash");const replaceInString=(e,t,r)=>{const n=e.toString();let o="",i=n,a=0,s=i.indexOf(t);for(;s>-1;)o+=n.substring(a,a+s)+r,i=i.substring(s+t.length,i.length),a+=s+t.length,s=i.indexOf(t);return i.length>0&&(o+=n.substring(n.length-i.length,n.length)),o},decodePointer=e=>replaceInString(replaceInString(decodeURIComponent(""+e),"~1","/"),"~0","~"),decodePointerFragment=e=>replaceInString(replaceInString(e,"~1","/"),"~0","~"),encodePointer=e=>replaceInString(replaceInString(e,"~","~0"),"//","/~1"),encodePointerFragment=e=>"number"==typeof e?e:replaceInString(replaceInString(e,"~","~0"),"/","~1"),getFirstPrimitiveProperty=e=>{const t=jsoncParser.createScanner(e,!0);if(t.scan(),1!==t.getToken())return;if(t.scan(),2===t.getToken())return;if(10!==t.getToken())throw new SyntaxError("Unexpected character");const r=t.getTokenValue();if(t.scan(),6!==t.getToken())throw new SyntaxError("Colon expected");switch(t.scan(),t.getToken()){case 10:return[r,t.getTokenValue()];case 11:return[r,Number(t.getTokenValue())];case 8:return[r,!0];case 9:return[r,!1];case 7:return[r,null];case 16:throw new SyntaxError("Unexpected character");case 17:throw new SyntaxError("Unexpected end of file");default:return}},getJsonPathForPosition=({lineMap:e,ast:t},r)=>{const n=e[r.line],o=e[r.line+1];if(void 0===n)return;const i=jsoncParser.findNodeAtOffset(t,void 0===o?n+r.character:Math.min(o,n+r.character),!0);if(void 0===i)return;const a=jsoncParser.getNodePath(i);return 0!==a.length?a:void 0};function getLastPathSegment(e){return decodePointerFragment(e.split("/").pop()||"")}const getLocationForJsonPath=({lineMap:e,ast:t},r,n=!1)=>{const o=findNodeAtPath(t,r,n);if(void 0!==o&&void 0!==o.range)return{range:o.range}};function findNodeAtPath(e,t,r){e:for(const n of t){const t=Number.isInteger(Number(n))?Number(n):n;if("string"==typeof t||"number"==typeof t&&"array"!==e.type){if("object"!==e.type||!Array.isArray(e.children))return r?e:void 0;for(const r of e.children)if(Array.isArray(r.children)&&r.children[0].value===String(t)){e=r.children[1];continue e}return r?e:void 0}if("array"!==e.type||t<0||!Array.isArray(e.children)||t>=e.children.length)return r?e:void 0;e=e.children[t]}return e}const parseWithPointers=(e,t={disallowComments:!0})=>{const r=[],{ast:n,data:o,lineMap:i}=parseTree(e,r,t);return{data:o,diagnostics:r,ast:n,lineMap:i}};function parseTree(e,t=[],r){const n=computeLineMap(e);let o={type:"array",offset:-1,length:-1,children:[],parent:void 0},i=null,a=[];const s=[""],c=[];function p(e){"property"===o.type&&(o.length=e-o.offset,o=o.parent)}function g(e,t,r){return{start:{line:e,character:t},end:{line:e,character:t+r}}}function f(e){return o.children.push(e),e}function u(e){Array.isArray(a)?a.push(e):null!==i&&(a[i]=e)}function l(e){u(e),c.push(a),a=e,i=null}function h(){a=c.pop()}const d={onObjectBegin:(e,t,n,i)=>{o=f({type:"object",offset:e,length:-1,parent:o,children:[],range:g(n,i,t)}),!1===r.ignoreDuplicateKeys&&(s.length=0),l({})},onObjectProperty:(e,n,a,c,p)=>{(o=f({type:"property",offset:n,length:-1,parent:o,children:[]})).children.push({type:"string",value:e,offset:n,length:a,parent:o}),!1===r.ignoreDuplicateKeys&&(0!==s.length&&s.includes(e)?t.push({range:g(c,p,a),message:"DuplicateKey",severity:types.DiagnosticSeverity.Error,path:getJsonPath(o),code:20}):s.push(e)),i=e},onObjectEnd:(e,t,r,n)=>{o.length=e+t-o.offset,o.range&&(o.range.end.line=r,o.range.end.character=n+t),o=o.parent,p(e+t),h()},onArrayBegin:(e,t,r,n)=>{o=f({type:"array",offset:e,length:-1,parent:o,children:[],range:g(r,n,t)}),l([])},onArrayEnd:(e,t,r,n)=>{o.length=e+t-o.offset,o.range&&(o.range.end.line=r,o.range.end.character=n+t),o=o.parent,p(e+t),h()},onLiteralValue:(e,t,r,n,i)=>{f({type:getLiteralNodeType(e),offset:t,length:r,parent:o,value:e,range:g(n,i,r)}),p(t+r),u(e)},onSeparator:(e,t,r)=>{"property"===o.type&&(":"===e?o.colonOffset=t:","===e&&p(t))},onError:(e,r,n,o,i)=>{t.push({range:g(o,i,n),message:jsoncParser.printParseErrorCode(e),severity:types.DiagnosticSeverity.Error,code:e})}};jsoncParser.visit(e,d,r);const y=o.children[0];return y&&delete y.parent,{ast:y,data:a[0],lineMap:n}}function getLiteralNodeType(e){switch(typeof e){case"boolean":return"boolean";case"number":return"number";case"string":return"string";default:return"null"}}const computeLineMap=e=>{const t=[0];let r=0;for(;r<e.length;r++)"\n"===e[r]&&t.push(r+1);return t.push(r+1),t};function getJsonPath(e,t=[]){return"property"===e.type&&t.unshift(e.children[0].value),void 0!==e.parent?("array"===e.parent.type&&void 0!==e.parent.parent&&t.unshift(e.parent.children.indexOf(e)),getJsonPath(e.parent,t)):t}const pathToPointer=e=>encodeUriFragmentIdentifier(e),encodeUriFragmentIdentifier=e=>{if(e&&"object"!=typeof e)throw new TypeError("Invalid type: path must be an array of segments.");return 0===e.length?"#":`#/${e.map(encodePointerFragment).join("/")}`},pointerToPath=e=>decodeUriFragmentIdentifier(e),decodeFragmentSegments=e=>{const t=e.length,r=[];let n=-1;for(;++n<t;)r.push(decodePointer(e[n]));return r},decodeUriFragmentIdentifier=e=>{if("string"!=typeof e)throw new TypeError("Invalid type: JSON Pointers are represented as strings.");if(0===e.length||"#"!==e[0])throw new URIError("Invalid JSON Pointer syntax; URI fragment identifiers must begin with a hash.");if(1===e.length)return[];if("/"!==e[1])throw new URIError("Invalid JSON Pointer syntax.");return decodeFragmentSegments(e.substring(2).split("/"))},renameObjectKey=(e,t,r)=>{if(!e||!e[t]||t===r)return e;const n={};for(const[o,i]of Object.entries(e))o===t?n[r]=i:o in n||(n[o]=i);return n},safeParse=(e,t)=>{if("string"!=typeof e)return e;try{const r=parseNumber(e);return"string"==typeof r?r:JSON.parse(e,t)}catch(e){return}},parseNumber=e=>{const t=Number(e);return Number.isFinite(t)?String(t)===e?t:e:NaN},safeStringify=(e,t,r)=>{if("string"==typeof e)return e;try{return JSON.stringify(e,t,r)}catch(n){return fastStringify(e,t,r)}},startsWith=(e,t)=>{if(e instanceof Array){if(t instanceof Array){if(t.length>e.length)return!1;for(const r in t){if(!t.hasOwnProperty(r))continue;const n=parseInt(e[r]),o=parseInt(t[r]);if(isNaN(n)&&isNaN(o)){if(e[r]!==t[r])return!1}else if(n!==o)return!1}}}else{if("string"!=typeof e)return!1;if("string"==typeof t)return e.startsWith(t)}return!0};function toPropertyPath(e){return e.replace(/^(\/|#\/)/,"").split("/").map(decodePointerFragment).map(sanitize).join(".")}function sanitize(e){return e.includes(".")?`["${e.replace(/"/g,'\\"')}"]`:e}function trimStart(e,t){if("string"==typeof e&&"string"==typeof t)return lodash.trimStart(e,t);if(!(e&&Array.isArray(e)&&e.length&&t&&Array.isArray(t)&&t.length))return e;let r=0;for(const n in e)if(e.hasOwnProperty(n)){if(e[n]!==t[n])break;r++}return e.slice(r)}exports.decodePointer=decodePointer,exports.decodePointerFragment=decodePointerFragment,exports.encodePointer=encodePointer,exports.encodePointerFragment=encodePointerFragment,exports.getFirstPrimitiveProperty=getFirstPrimitiveProperty,exports.getJsonPathForPosition=getJsonPathForPosition,exports.getLastPathSegment=getLastPathSegment,exports.getLocationForJsonPath=getLocationForJsonPath,exports.parseTree=parseTree,exports.parseWithPointers=parseWithPointers,exports.pathToPointer=pathToPointer,exports.pointerToPath=pointerToPath,exports.renameObjectKey=renameObjectKey,exports.safeParse=safeParse,exports.safeStringify=safeStringify,exports.startsWith=startsWith,exports.toPropertyPath=toPropertyPath,exports.trimStart=trimStart;

@@ -5,2 +5,3 @@ export * from './decodePointer';

export * from './encodePointerFragment';
export * from './getFirstPrimitiveProperty';
export * from './getJsonPathForPosition';

@@ -7,0 +8,0 @@ export * from './getLastPathSegment';

@@ -1,1 +0,1 @@

import{findNodeAtOffset as r,getNodePath as e,visit as n,printParseErrorCode as t}from"jsonc-parser";import{DiagnosticSeverity as i}from"@stoplight/types";import o from"safe-stable-stringify";import{trimStart as a}from"lodash";const s=(r,e,n)=>{const t=r.toString();let i="",o=t,a=0,s=o.indexOf(e);for(;s>-1;)i+=t.substring(a,a+s)+n,o=o.substring(s+e.length,o.length),a+=s+e.length,s=o.indexOf(e);return o.length>0&&(i+=t.substring(t.length-o.length,t.length)),i},f=r=>s(s(decodeURIComponent(""+r),"~1","/"),"~0","~"),l=r=>s(s(r,"~1","/"),"~0","~"),p=r=>s(s(r,"~","~0"),"//","/~1"),c=r=>"number"==typeof r?r:s(s(r,"~","~0"),"/","~1"),u=({lineMap:n,ast:t},i)=>{const o=n[i.line],a=n[i.line+1];if(void 0===o)return;const s=r(t,void 0===a?o+i.character:Math.min(a,o+i.character),!0);if(void 0===s)return;const f=e(s);return 0!==f.length?f:void 0};function h(r){return l(r.split("/").pop()||"")}const g=({lineMap:r,ast:e},n,t=!1)=>{const i=function(r,e,n){r:for(const t of e){const e=Number.isInteger(Number(t))?Number(t):t;if("string"==typeof e||"number"==typeof e&&"array"!==r.type){if("object"!==r.type||!Array.isArray(r.children))return n?r:void 0;for(const n of r.children)if(Array.isArray(n.children)&&n.children[0].value===String(e)){r=n.children[1];continue r}return n?r:void 0}if("array"!==r.type||e<0||!Array.isArray(r.children)||e>=r.children.length)return n?r:void 0;r=r.children[e]}return r}(e,n,t);if(void 0!==i&&void 0!==i.range)return{range:i.range}};const y=(r,e={disallowComments:!0})=>{const n=[],{ast:t,data:i,lineMap:o}=d(r,n,e);return{data:i,diagnostics:n,ast:t,lineMap:o}};function d(r,e=[],o){const a=b(r);let s={type:"array",offset:-1,length:-1,children:[],parent:void 0},f=null,l=[];const p=[""],c=[];function u(r){"property"===s.type&&(s.length=r-s.offset,s=s.parent)}function h(r,e,n){return{start:{line:r,character:e},end:{line:r,character:e+n}}}function g(r){return s.children.push(r),r}function y(r){Array.isArray(l)?l.push(r):null!==f&&(l[f]=r)}function d(r){y(r),c.push(l),l=r,f=null}function A(){l=c.pop()}n(r,{onObjectBegin:(r,e,n,t)=>{s=g({type:"object",offset:r,length:-1,parent:s,children:[],range:h(n,t,e)}),!1===o.ignoreDuplicateKeys&&(p.length=0),d({})},onObjectProperty:(r,n,t,a,l)=>{(s=g({type:"property",offset:n,length:-1,parent:s,children:[]})).children.push({type:"string",value:r,offset:n,length:t,parent:s}),!1===o.ignoreDuplicateKeys&&(0!==p.length&&p.includes(r)?e.push({range:h(a,l,t),message:"DuplicateKey",severity:i.Error,path:v(s),code:20}):p.push(r)),f=r},onObjectEnd:(r,e,n,t)=>{s.length=r+e-s.offset,s.range&&(s.range.end.line=n,s.range.end.character=t+e),s=s.parent,u(r+e),A()},onArrayBegin:(r,e,n,t)=>{s=g({type:"array",offset:r,length:-1,parent:s,children:[],range:h(n,t,e)}),d([])},onArrayEnd:(r,e,n,t)=>{s.length=r+e-s.offset,s.range&&(s.range.end.line=n,s.range.end.character=t+e),s=s.parent,u(r+e),A()},onLiteralValue:(r,e,n,t,i)=>{g({type:m(r),offset:e,length:n,parent:s,value:r,range:h(t,i,n)}),u(e+n),y(r)},onSeparator:(r,e,n)=>{"property"===s.type&&(":"===r?s.colonOffset=e:","===r&&u(e))},onError:(r,n,o,a,s)=>{e.push({range:h(a,s,o),message:t(r),severity:i.Error,code:r})}},o);const N=s.children[0];return N&&delete N.parent,{ast:N,data:l[0],lineMap:a}}function m(r){switch(typeof r){case"boolean":return"boolean";case"number":return"number";case"string":return"string";default:return"null"}}const b=r=>{const e=[0];let n=0;for(;n<r.length;n++)"\n"===r[n]&&e.push(n+1);return e.push(n+1),e};function v(r,e=[]){return"property"===r.type&&e.unshift(r.children[0].value),void 0!==r.parent?("array"===r.parent.type&&void 0!==r.parent.parent&&e.unshift(r.parent.children.indexOf(r)),v(r.parent,e)):e}const A=r=>N(r),N=r=>{if(r&&"object"!=typeof r)throw new TypeError("Invalid type: path must be an array of segments.");return 0===r.length?"#":`#/${r.map(c).join("/")}`},O=r=>w(r),w=r=>{if("string"!=typeof r)throw new TypeError("Invalid type: JSON Pointers are represented as strings.");if(0===r.length||"#"!==r[0])throw new URIError("Invalid JSON Pointer syntax; URI fragment identifiers must begin with a hash.");if(1===r.length)return[];if("/"!==r[1])throw new URIError("Invalid JSON Pointer syntax.");return(r=>{const e=r.length,n=[];let t=-1;for(;++t<e;)n.push(f(r[t]));return n})(r.substring(2).split("/"))},I=(r,e,n)=>{if(!r||!r[e]||e===n)return r;const t={};for(const[i,o]of Object.entries(r))i===e?t[n]=o:i in t||(t[i]=o);return t},j=(r,e)=>{if("string"!=typeof r)return r;try{const n=S(r);return"string"==typeof n?n:JSON.parse(r,e)}catch(r){return}},S=r=>{const e=Number(r);return Number.isFinite(e)?String(e)===r?e:r:NaN},E=(r,e,n)=>{if("string"==typeof r)return r;try{return JSON.stringify(r,e,n)}catch(t){return o(r,e,n)}},x=(r,e)=>{if(r instanceof Array){if(e instanceof Array){if(e.length>r.length)return!1;for(const n in e){if(!e.hasOwnProperty(n))continue;const t=parseInt(r[n]),i=parseInt(e[n]);if(isNaN(t)&&isNaN(i)){if(r[n]!==e[n])return!1}else if(t!==i)return!1}}}else{if("string"!=typeof r)return!1;if("string"==typeof e)return r.startsWith(e)}return!0};function M(r){return r.replace(/^(\/|#\/)/,"").split("/").map(l).map(P).join(".")}function P(r){return r.includes(".")?`["${r.replace(/"/g,'\\"')}"]`:r}function J(r,e){if("string"==typeof r&&"string"==typeof e)return a(r,e);if(!(r&&Array.isArray(r)&&r.length&&e&&Array.isArray(e)&&e.length))return r;let n=0;for(const t in r)if(r.hasOwnProperty(t)){if(r[t]!==e[t])break;n++}return r.slice(n)}export{f as decodePointer,l as decodePointerFragment,p as encodePointer,c as encodePointerFragment,u as getJsonPathForPosition,h as getLastPathSegment,g as getLocationForJsonPath,d as parseTree,y as parseWithPointers,A as pathToPointer,O as pointerToPath,I as renameObjectKey,j as safeParse,E as safeStringify,x as startsWith,M as toPropertyPath,J as trimStart};
import{createScanner as e,findNodeAtOffset as r,getNodePath as n,visit as t,printParseErrorCode as i}from"jsonc-parser";import{DiagnosticSeverity as o}from"@stoplight/types";import a from"safe-stable-stringify";import{trimStart as s}from"lodash";const c=(e,r,n)=>{const t=e.toString();let i="",o=t,a=0,s=o.indexOf(r);for(;s>-1;)i+=t.substring(a,a+s)+n,o=o.substring(s+r.length,o.length),a+=s+r.length,s=o.indexOf(r);return o.length>0&&(i+=t.substring(t.length-o.length,t.length)),i},u=e=>c(c(decodeURIComponent(""+e),"~1","/"),"~0","~"),f=e=>c(c(e,"~1","/"),"~0","~"),l=e=>c(c(e,"~","~0"),"//","/~1"),p=e=>"number"==typeof e?e:c(c(e,"~","~0"),"/","~1"),h=r=>{const n=e(r,!0);if(n.scan(),1!==n.getToken())return;if(n.scan(),2===n.getToken())return;if(10!==n.getToken())throw new SyntaxError("Unexpected character");const t=n.getTokenValue();if(n.scan(),6!==n.getToken())throw new SyntaxError("Colon expected");switch(n.scan(),n.getToken()){case 10:return[t,n.getTokenValue()];case 11:return[t,Number(n.getTokenValue())];case 8:return[t,!0];case 9:return[t,!1];case 7:return[t,null];case 16:throw new SyntaxError("Unexpected character");case 17:throw new SyntaxError("Unexpected end of file");default:return}},g=({lineMap:e,ast:t},i)=>{const o=e[i.line],a=e[i.line+1];if(void 0===o)return;const s=r(t,void 0===a?o+i.character:Math.min(a,o+i.character),!0);if(void 0===s)return;const c=n(s);return 0!==c.length?c:void 0};function y(e){return f(e.split("/").pop()||"")}const d=({lineMap:e,ast:r},n,t=!1)=>{const i=function(e,r,n){e:for(const t of r){const r=Number.isInteger(Number(t))?Number(t):t;if("string"==typeof r||"number"==typeof r&&"array"!==e.type){if("object"!==e.type||!Array.isArray(e.children))return n?e:void 0;for(const n of e.children)if(Array.isArray(n.children)&&n.children[0].value===String(r)){e=n.children[1];continue e}return n?e:void 0}if("array"!==e.type||r<0||!Array.isArray(e.children)||r>=e.children.length)return n?e:void 0;e=e.children[r]}return e}(r,n,t);if(void 0!==i&&void 0!==i.range)return{range:i.range}};const m=(e,r={disallowComments:!0})=>{const n=[],{ast:t,data:i,lineMap:o}=b(e,n,r);return{data:i,diagnostics:n,ast:t,lineMap:o}};function b(e,r=[],n){const a=w(e);let s={type:"array",offset:-1,length:-1,children:[],parent:void 0},c=null,u=[];const f=[""],l=[];function p(e){"property"===s.type&&(s.length=e-s.offset,s=s.parent)}function h(e,r,n){return{start:{line:e,character:r},end:{line:e,character:r+n}}}function g(e){return s.children.push(e),e}function y(e){Array.isArray(u)?u.push(e):null!==c&&(u[c]=e)}function d(e){y(e),l.push(u),u=e,c=null}function m(){u=l.pop()}t(e,{onObjectBegin:(e,r,t,i)=>{s=g({type:"object",offset:e,length:-1,parent:s,children:[],range:h(t,i,r)}),!1===n.ignoreDuplicateKeys&&(f.length=0),d({})},onObjectProperty:(e,t,i,a,u)=>{(s=g({type:"property",offset:t,length:-1,parent:s,children:[]})).children.push({type:"string",value:e,offset:t,length:i,parent:s}),!1===n.ignoreDuplicateKeys&&(0!==f.length&&f.includes(e)?r.push({range:h(a,u,i),message:"DuplicateKey",severity:o.Error,path:N(s),code:20}):f.push(e)),c=e},onObjectEnd:(e,r,n,t)=>{s.length=e+r-s.offset,s.range&&(s.range.end.line=n,s.range.end.character=t+r),s=s.parent,p(e+r),m()},onArrayBegin:(e,r,n,t)=>{s=g({type:"array",offset:e,length:-1,parent:s,children:[],range:h(n,t,r)}),d([])},onArrayEnd:(e,r,n,t)=>{s.length=e+r-s.offset,s.range&&(s.range.end.line=n,s.range.end.character=t+r),s=s.parent,p(e+r),m()},onLiteralValue:(e,r,n,t,i)=>{g({type:v(e),offset:r,length:n,parent:s,value:e,range:h(t,i,n)}),p(r+n),y(e)},onSeparator:(e,r,n)=>{"property"===s.type&&(":"===e?s.colonOffset=r:","===e&&p(r))},onError:(e,n,t,a,s)=>{r.push({range:h(a,s,t),message:i(e),severity:o.Error,code:e})}},n);const b=s.children[0];return b&&delete b.parent,{ast:b,data:u[0],lineMap:a}}function v(e){switch(typeof e){case"boolean":return"boolean";case"number":return"number";case"string":return"string";default:return"null"}}const w=e=>{const r=[0];let n=0;for(;n<e.length;n++)"\n"===e[n]&&r.push(n+1);return r.push(n+1),r};function N(e,r=[]){return"property"===e.type&&r.unshift(e.children[0].value),void 0!==e.parent?("array"===e.parent.type&&void 0!==e.parent.parent&&r.unshift(e.parent.children.indexOf(e)),N(e.parent,r)):r}const A=e=>O(e),O=e=>{if(e&&"object"!=typeof e)throw new TypeError("Invalid type: path must be an array of segments.");return 0===e.length?"#":`#/${e.map(p).join("/")}`},x=e=>S(e),S=e=>{if("string"!=typeof e)throw new TypeError("Invalid type: JSON Pointers are represented as strings.");if(0===e.length||"#"!==e[0])throw new URIError("Invalid JSON Pointer syntax; URI fragment identifiers must begin with a hash.");if(1===e.length)return[];if("/"!==e[1])throw new URIError("Invalid JSON Pointer syntax.");return(e=>{const r=e.length,n=[];let t=-1;for(;++t<r;)n.push(u(e[t]));return n})(e.substring(2).split("/"))},E=(e,r,n)=>{if(!e||!e[r]||r===n)return e;const t={};for(const[i,o]of Object.entries(e))i===r?t[n]=o:i in t||(t[i]=o);return t},I=(e,r)=>{if("string"!=typeof e)return e;try{const n=j(e);return"string"==typeof n?n:JSON.parse(e,r)}catch(e){return}},j=e=>{const r=Number(e);return Number.isFinite(r)?String(r)===e?r:e:NaN},T=(e,r,n)=>{if("string"==typeof e)return e;try{return JSON.stringify(e,r,n)}catch(t){return a(e,r,n)}},k=(e,r)=>{if(e instanceof Array){if(r instanceof Array){if(r.length>e.length)return!1;for(const n in r){if(!r.hasOwnProperty(n))continue;const t=parseInt(e[n]),i=parseInt(r[n]);if(isNaN(t)&&isNaN(i)){if(e[n]!==r[n])return!1}else if(t!==i)return!1}}}else{if("string"!=typeof e)return!1;if("string"==typeof r)return e.startsWith(r)}return!0};function U(e){return e.replace(/^(\/|#\/)/,"").split("/").map(f).map(M).join(".")}function M(e){return e.includes(".")?`["${e.replace(/"/g,'\\"')}"]`:e}function P(e,r){if("string"==typeof e&&"string"==typeof r)return s(e,r);if(!(e&&Array.isArray(e)&&e.length&&r&&Array.isArray(r)&&r.length))return e;let n=0;for(const t in e)if(e.hasOwnProperty(t)){if(e[t]!==r[t])break;n++}return e.slice(n)}export{u as decodePointer,f as decodePointerFragment,l as encodePointer,p as encodePointerFragment,h as getFirstPrimitiveProperty,g as getJsonPathForPosition,y as getLastPathSegment,d as getLocationForJsonPath,b as parseTree,m as parseWithPointers,A as pathToPointer,x as pointerToPath,E as renameObjectKey,I as safeParse,T as safeStringify,k as startsWith,U as toPropertyPath,P as trimStart};
{
"name": "@stoplight/json",
"version": "3.1.2",
"version": "3.2.0",
"description": "Useful functions when working with JSON.",

@@ -5,0 +5,0 @@ "keywords": [

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