json-p3 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,7 +35,10 @@ export type JSONPathEnvironmentOptions = {
35
35
  maxRecursionDepth?: number;
36
36
  };
37
37
  /**
38
+ * A configuration object from which JSONPath queries can be evaluated.
38
39
  *
40
+ * An environment is where you'd register custom function extensions or set
41
+ * the maximum recursion depth limit, for example.
39
42
  */
40
43
  export declare class JSONPathEnvironment {
41
44
  /**
@@ -69,23 +72,32 @@ export declare class JSONPathEnvironment {
69
72
  functionRegister: Map<string, FilterFunction>;
70
73
  private parser;
71
74
  /**
72
- *
73
- * @param options -
75
+ * @param options - Environment configuration options.
74
76
  */
75
77
  constructor(options?: JSONPathEnvironmentOptions);
76
78
  /**
77
- *
78
- * @param path -
79
- * @returns
79
+ * @param path - A JSONPath query to parse.
80
+ * @returns A new {@link JSONPath} object, bound to this environment.
80
81
  */
81
82
  compile(path: string): JSONPath;
82
83
  /**
83
84
  *
84
- * @param path -
85
- * @param value -
86
- * @returns
85
+ * @param path - A JSONPath query to parse and evaluate against _value_.
86
+ * @param value - Data to which _path_ will be applied.
87
+ * @returns The {@link JSONPathNodeList} resulting from applying _path_
88
+ * to _value_.
87
89
  */
88
90
  query(path: string, value: JSONValue): JSONPathNodeList;
91
+ /**
92
+ * A lazy version of {@link query} which is faster and more memory
93
+ * efficient when querying some large datasets.
94
+ *
95
+ * @param path - A JSONPath query to parse and evaluate against _value_.
96
+ * @param value - Data to which _path_ will be applied.
97
+ * @returns A sequence of {@link JSONPathNode} objects resulting from
98
+ * applying _path_ to _value_.
99
+ */
100
+ lazyQuery(path: string, value: JSONValue): IterableIterator<JSONPathNode>;
89
101
  /**
90
102
  * Return a {@link JSONPathNode} instance for the first object found in
91
103
  * _value_ matching _path_.
@@ -96,11 +108,24 @@ export declare class JSONPathEnvironment {
96
108
  * there are no matches.
97
109
  */
98
110
  match(path: string, value: JSONValue): JSONPathNode | undefined;
111
+ /**
112
+ * A hook for setting up the function register. You are encouraged to
113
+ * override this method in classes extending `JSONPathEnvironment`.
114
+ */
99
115
  protected setupFilterFunctions(): void;
100
116
  /**
117
+ * Check the well-typedness of a function's arguments at compile-time.
118
+ *
119
+ * This method is called by the {@link Parser} when parsing function calls.
120
+ * It is expected to throw a {@link JSONPathTypeError} if the function's
121
+ * parameters are not well-typed.
122
+ *
123
+ * Override this if you want to deviate from the JSONPath Spec's function
124
+ * extension type system.
101
125
  *
102
- * @param token -
103
- * @param args -
126
+ * @param token - The {@link Token} starting the function call. `Token.value`
127
+ * will contain the name of the function.
128
+ * @param args - One {@link FilterExpression} for each argument.
104
129
  */
105
130
  checkWellTypedness(token: Token, args: FilterExpression[]): FilterExpression[];
106
131
  }
@@ -31,6 +31,24 @@ export declare const DEFAULT_ENVIRONMENT: JSONPathEnvironment;
31
31
  * used in an invalid way.
32
32
  */
33
33
  export declare function query(path: string, value: JSONValue): JSONPathNodeList;
34
+ /**
35
+ * Lazily query JSON value _value_ with JSONPath expression _path_.
36
+ * Lazy queries can be faster and more memory efficient when querying
37
+ * large datasets, especially when using recursive decent selectors.
38
+ *
39
+ * @param path - A JSONPath expression/query.
40
+ * @param value - The JSON-like value the JSONPath query is applied to.
41
+ * @returns A sequence of {@link JSONPathNode} objects resulting from
42
+ * applying _path_ to _value_.
43
+ *
44
+ * @throws {@link JSONPathSyntaxError}
45
+ * If the path does not conform to standard syntax.
46
+ *
47
+ * @throws {@link JSONPathTypeError}
48
+ * If filter function arguments are invalid, or filter expression are
49
+ * used in an invalid way.
50
+ */
51
+ export declare function lazyQuery(path: string, value: JSONValue): IterableIterator<JSONPathNode>;
34
52
  /**
35
53
  * Compile JSONPath _path_ for later use.
36
54
  * @param path - A JSONPath expression/query.
@@ -7,16 +7,13 @@ export declare class JSONPathNode {
7
7
  readonly value: JSONValue;
8
8
  readonly location: Array<string | number>;
9
9
  readonly root: JSONValue;
10
- /**
11
- * The normalized path to this node in the target JSON value.
12
- */
13
- readonly path: string;
14
10
  /**
15
11
  * @param value - The JSON value found at _location_.
16
12
  * @param location - The parts of a normalized path to _value_.
17
13
  * @param root - The target value at the top of the JSON node tree.
18
14
  */
19
15
  constructor(value: JSONValue, location: Array<string | number>, root: JSONValue);
16
+ get path(): string;
20
17
  /**
21
18
  * Return this node's location as a {@link JSONPointer}.
22
19
  */
@@ -2,12 +2,16 @@ import { JSONPathEnvironment } from "./environment";
2
2
  import { BooleanLiteral, FilterExpression, FunctionExtension, InfixExpression, NullLiteral, NumberLiteral, PrefixExpression, RelativeQuery, RootQuery, StringLiteral } from "./expression";
3
3
  import { BracketedSelection, FilterSelector, IndexSelector, JSONPathSelector, SliceSelector } from "./selectors";
4
4
  import { Token, TokenStream } from "./token";
5
+ /**
6
+ * JSONPath token stream parser.
7
+ */
5
8
  export declare class Parser {
6
9
  readonly environment: JSONPathEnvironment;
7
10
  protected tokenMap: Map<string, (stream: TokenStream) => FilterExpression>;
8
11
  constructor(environment: JSONPathEnvironment);
9
12
  parse(stream: TokenStream): JSONPathSelector[];
10
13
  protected parsePath(stream: TokenStream, inFilter?: boolean): JSONPathSelector[];
14
+ protected parseSegment(stream: TokenStream): JSONPathSelector | null;
11
15
  protected parseIndex(stream: TokenStream): IndexSelector;
12
16
  protected parseSlice(stream: TokenStream): SliceSelector;
13
17
  protected parseBracketedSelection(stream: TokenStream): BracketedSelection;
@@ -20,6 +20,12 @@ export declare class JSONPath {
20
20
  * @returns
21
21
  */
22
22
  query(value: JSONValue): JSONPathNodeList;
23
+ /**
24
+ *
25
+ * @param value -
26
+ * @returns
27
+ */
28
+ lazyQuery(value: JSONValue): IterableIterator<JSONPathNode>;
23
29
  /**
24
30
  * Return a {@link JSONPathNode} instance for the first object found in
25
31
  * _value_ matching this query.
@@ -1,6 +1,6 @@
1
1
  import { JSONPathEnvironment } from "./environment";
2
2
  import { LogicalExpression } from "./expression";
3
- import { JSONPathNodeList } from "./node";
3
+ import { JSONPathNode } from "./node";
4
4
  import { Token } from "./token";
5
5
  /**
6
6
  * Base class for all JSONPath segments and selectors.
@@ -15,7 +15,11 @@ export declare abstract class JSONPathSelector {
15
15
  /**
16
16
  * @param nodes - Nodes matched by preceding selectors.
17
17
  */
18
- abstract resolve(nodes: JSONPathNodeList): JSONPathNodeList;
18
+ abstract resolve(nodes: JSONPathNode[]): JSONPathNode[];
19
+ /**
20
+ * @param nodes - Nodes matched by preceding selectors.
21
+ */
22
+ abstract lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
19
23
  /**
20
24
  * Return a canonical string representation of this selector.
21
25
  */
@@ -30,7 +34,8 @@ export declare class NameSelector extends JSONPathSelector {
30
34
  readonly name: string;
31
35
  readonly shorthand: boolean;
32
36
  constructor(environment: JSONPathEnvironment, token: Token, name: string, shorthand: boolean);
33
- resolve(nodes: JSONPathNodeList): JSONPathNodeList;
37
+ resolve(nodes: JSONPathNode[]): JSONPathNode[];
38
+ lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
34
39
  toString(): string;
35
40
  }
36
41
  /**
@@ -41,7 +46,8 @@ export declare class IndexSelector extends JSONPathSelector {
41
46
  readonly token: Token;
42
47
  readonly index: number;
43
48
  constructor(environment: JSONPathEnvironment, token: Token, index: number);
44
- resolve(nodes: JSONPathNodeList): JSONPathNodeList;
49
+ resolve(nodes: JSONPathNode[]): JSONPathNode[];
50
+ lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
45
51
  toString(): string;
46
52
  private normalizedIndex;
47
53
  }
@@ -52,7 +58,8 @@ export declare class SliceSelector extends JSONPathSelector {
52
58
  readonly stop?: number | undefined;
53
59
  readonly step?: number | undefined;
54
60
  constructor(environment: JSONPathEnvironment, token: Token, start?: number | undefined, stop?: number | undefined, step?: number | undefined);
55
- resolve(nodes: JSONPathNodeList): JSONPathNodeList;
61
+ resolve(nodes: JSONPathNode[]): JSONPathNode[];
62
+ lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
56
63
  toString(): string;
57
64
  private checkRange;
58
65
  private slice;
@@ -62,11 +69,18 @@ export declare class WildcardSelector extends JSONPathSelector {
62
69
  readonly token: Token;
63
70
  readonly shorthand: boolean;
64
71
  constructor(environment: JSONPathEnvironment, token: Token, shorthand?: boolean);
65
- resolve(nodes: JSONPathNodeList): JSONPathNodeList;
72
+ resolve(nodes: JSONPathNode[]): JSONPathNode[];
73
+ lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
66
74
  toString(): string;
67
75
  }
68
76
  export declare class RecursiveDescentSegment extends JSONPathSelector {
69
- resolve(nodes: JSONPathNodeList): JSONPathNodeList;
77
+ readonly environment: JSONPathEnvironment;
78
+ readonly token: Token;
79
+ readonly selector: JSONPathSelector;
80
+ constructor(environment: JSONPathEnvironment, token: Token, selector: JSONPathSelector);
81
+ resolve(nodes: JSONPathNode[]): JSONPathNode[];
82
+ lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
83
+ protected _lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
70
84
  toString(): string;
71
85
  private visit;
72
86
  }
@@ -75,7 +89,8 @@ export declare class FilterSelector extends JSONPathSelector {
75
89
  readonly token: Token;
76
90
  readonly expression: LogicalExpression;
77
91
  constructor(environment: JSONPathEnvironment, token: Token, expression: LogicalExpression);
78
- resolve(nodes: JSONPathNodeList): JSONPathNodeList;
92
+ resolve(nodes: JSONPathNode[]): JSONPathNode[];
93
+ lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
79
94
  toString(): string;
80
95
  }
81
96
  export type BracketedSegment = FilterSelector | IndexSelector | NameSelector | SliceSelector | WildcardSelector;
@@ -84,6 +99,7 @@ export declare class BracketedSelection extends JSONPathSelector {
84
99
  readonly token: Token;
85
100
  readonly items: BracketedSegment[];
86
101
  constructor(environment: JSONPathEnvironment, token: Token, items: BracketedSegment[]);
87
- resolve(nodes: JSONPathNodeList): JSONPathNodeList;
102
+ resolve(nodes: JSONPathNode[]): JSONPathNode[];
103
+ lazyResolve(nodes: Iterable<JSONPathNode>): Generator<JSONPathNode>;
88
104
  toString(): string;
89
105
  }
@@ -12,6 +12,7 @@ export type FilterContext = {
12
12
  environment: JSONPathEnvironment;
13
13
  currentValue: JSONValue;
14
14
  rootValue: JSONValue;
15
+ lazy?: boolean;
15
16
  };
16
17
  /**
17
18
  * A type predicate for an object with a string property.
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2022.full.d.ts","../node_modules/tslib/tslib.d.ts","../src/types.ts","../src/deep_equals.ts","../src/path/token.ts","../src/path/errors.ts","../src/path/functions/function.ts","../src/pointer/errors.ts","../src/pointer/pointer.ts","../src/pointer/index.ts","../src/path/node.ts","../src/path/types.ts","../src/path/selectors.ts","../src/path/path.ts","../src/path/expression.ts","../src/path/functions/count.ts","../src/path/functions/length.ts","../src/path/lru_cache.ts","../src/path/functions/match.ts","../src/path/functions/search.ts","../src/path/functions/value.ts","../src/path/lex.ts","../src/path/parse.ts","../src/path/environment.ts","../src/path/functions/index.ts","../src/path/index.ts","../src/patch/errors.ts","../src/patch/patch.ts","../src/patch/index.ts","../src/index.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1df2366de6650547b3dc1d7c4147355c0f6b4729c964e3839636fa418982d131","7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"33284ec0f15a0155435b2ed597c4f33933487cbe754c656176f3e11a1cc1be9c","signature":"79b6784fd76df7cd11de1c79d468964032e484a46572770c6e8f085543054b04"},{"version":"4678ace15cff1f5b0d70165cedf9a583c6f5a16a268a63045b4fe9817cfce084","signature":"2513d5bb1f4f9bc86ab56519a27b41445a9f5f060e5d5abe8f8d4b623e7194c0"},{"version":"a1dc8e874322f03d906d42d47ca8643b86cce6622e93edfd37e0c587f4dc2b0b","signature":"0485a2a81426be0d208698398a224e16e895f662f022e308fe39bfcc7d31128e"},{"version":"a8eebb3b9a3473196eace37ebc460cbbf9d5dcf2ce9efff018eeab0afce266b2","signature":"b6d013de74067a30e0a9b9efd9e73b2adb0345ec26ffb2b059dc54f6c2f58d34"},{"version":"1656d694529d020456610597d43498686fe3a11e986dc33f1f9457e846e411ff","signature":"96397fcc8549ae1cc26e5380314a772ef519caed2dffd5bb7f670512868d7014"},{"version":"cee423a49db96ed018ecc3c0ce1f715c39c6d7b111bd9298154eab20cfc3ce71","signature":"68614b45b0599d1d5f250f6f3659b4eba0066298a171944e3b6111bdbb3f85e2"},{"version":"0e73b7863209d417c3a24f4e4ea33565fbc933dc8534bb27ce8a0f24306ca3a6","signature":"c7d6a1ef7dd2dd9ccd00f352184c55ccf7aead988b8ab72ed4502385aa8c1faa"},{"version":"f46b0482ac5cb9f65d936371575fec5c5cd5cf72e69f92cb193e9e884b32cf51","signature":"d3d4304cdfee7ddd8e4c5edf9a2274ea6c206101bdd541be77bd8f33a7e795fb"},{"version":"7498d4fff2ff8951dc04fddf643612313282bdc8c85ba5ab14943a7762e34ec9","signature":"abe9c61138dffc34859df9859caf99fb8e68998907f56c9163dad024df79504d"},{"version":"b63f539330d9c30391b486a6be410e72d6b74c3bc7672fb59c99f34729bf339e","signature":"edbce83912ae8d0bca1dfe4840004b61d68987cc91efcf4dae132559ab6afc18"},{"version":"072c5db1761cbbcf05c40654d4a52651de1671dbdf01c6f90a71fe044a1d128e","signature":"863a152e2eb71af8f6b5e2aa5147076a3446d40455e1183aa6922e4e15d7d219"},{"version":"5944c6f50a586f5974d22e678e134c309590a3a765dc3e610554c19de4077228","signature":"ebb482d72c08b9ee8ca42640e688deef943b89935125d23c0bdc300e03094f87"},{"version":"97074ffe7075cc7178f9a3157349f38f9e31bebddcbfc105cec3def2e5b95f0e","signature":"c7f64d0c25bcc724e4d037317f5f5ed29d5e1fe1682380eb7855f2704dff4aeb"},{"version":"387bcfd3dfe23ce2a90da091e614f34215a2f649195722974cb5f475d9e4d293","signature":"7d049ebd3d8b13384ed983fb766bab9e8f4233223899cf1b47d7bbba308cbc8e"},{"version":"e3af45db67cf30e8891f29fbfb24839da0f0041d8ff2be9a01d367bb72e810f1","signature":"2dee7a558d8833901919cb779f0276f0e3bec45f49b8af10410cd4f4d89b53ed"},{"version":"d07dfddbd00e64ae9f775398c1a2625c515b74ded91c0c4e0bbe461abb5152a3","signature":"e72666ab28f3e60e79c0c7fe4a735dfd9d1dd8a5e494aca59095e1d48afb5329"},{"version":"012c789415f07ead73a95f2f52dd246786773df5fd4d9c24df1d77f722060047","signature":"2bf1ae2d19910febdc6f2ab43dd27613e0295dc82c171338392e9902985a93c7"},{"version":"65be835667a6bd146bf60cd238f1148fc1c5841174e7135d75a4f59a7de3b8fc","signature":"00d01c466ba665becd5848937521885fb00420b4861cd42675b65e29efc9bd0e"},{"version":"6db1a41bb47bede4105120bdd88e7b70d7883e978f19b653e1acdc113d5a0074","signature":"fb9839adb715ca2d59c9bf02229e4430d758bc29d26a83ca5323d3e03b8b9ef7"},{"version":"c57ed0a2a6b1d08056c2d9e043f0fcc5379a1a84e834454f27a3ac80c3d11533","signature":"d4256277876cde4925d92ba74eff45117237d810b85647f1b3382d752ecd0af2"},{"version":"dad3f137f6829803a95db18db8e975aa60f1e87f78ef03b1e38cda4b626a91ce","signature":"4286adfbe91b2459d53040aef6be45137f3e77ff26f45400db39ef500c899011"},{"version":"811bc345fcb08a11e7f4e5dc783603c034fde5a8e41cd955ff60b6cbe0790dd3","signature":"5ac9d3d03bcd263b8a219afbd3b3ef7b7c628f02ec75e62530465b843d43f5f4"},"3f80ab14a6fa145abc3560184eb4823522f938f6b7e5eb49a84b34c333633499",{"version":"0972759f3184732aa400555d1afeea82d21aeb0c61ec665b33f7539e3fbedad3","signature":"050c4d59fd7916730893f867d0bbfb4e7e7c917cc3881bae18500b1c8f61b0e2"},{"version":"67ca17abe3cabfac13df8e108344f54755ecf85e900c71dfd277f7b484d96eff","signature":"e3d508e6cbf8abaf1aee6c0cfda75d1475845a76f1a70f95636e838d3af44895"},{"version":"e3d5b0648a7efd2a4a1407084245b467cfcd54b0de4dd1b7da972dd3fad6ace8","signature":"643c93cfe91a7df799ae343b715216c842c6e6af7d2e3429b95f517e4ef14bf6"},{"version":"1b9a44d773153d5e38c5c1a683990694b13a7ca68195ab1b01424f92e7cd62cf","signature":"4a01d0c781217f94ad852ce1cefc50e78202de4be411780edb7a8cae8de4815a"},{"version":"1b6bbee635102f30a7a797e34cd4d72a96f679f6704f37241b742f5173b62668","signature":"c546ec50520eb9107d90866554ba603d2893bb50cabf5114d7f7ac2f6288cb28"},"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"b2fdcc3836d425833af10e536ae5491c34e218bc71870f12a401720f874b6ce4","affectsGlobalScope":true}],"root":[[62,89]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./","removeComments":false,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[92],[94,97],[90,96],[94],[91,95],[93],[61,62],[61,62,69,85,88],[61],[61,62,86,87],[61,62,63,67,69,86],[61,62,64,65,66,70,73,74,75,76,78,79,80,81,82],[61,64],[61,62,63,64,65,66,70,71,73],[61,66,70],[61,66,75,76,78,79,80],[61,62,66,71],[61,66,77],[61,66,70,71],[61,62,64,65,70,71,72,73,74,83,84],[61,64,65],[61,62,69],[61,64,65,66,72,73,74,83],[61,62,70,72,83],[61,62,64,65,70,71,74,83],[61,65],[61,62,83],[61,62,67,68],[61,62,67],[62,69,85,88],[62,86,87],[62,69],[62,64,66,70,73,74],[64],[64,70,71,73],[66,70],[66,71],[66],[62,64,65,70,71,72,73,74,83,84],[64,72,74,83],[62,70,72,83],[64,70,74,83],[62,83],[62,67,68],[62]],"referencedMap":[[93,1],[98,2],[97,3],[95,4],[96,5],[94,6],[63,7],[89,8],[86,9],[88,10],[87,11],[83,12],[65,13],[74,14],[75,15],[66,9],[84,16],[76,17],[78,18],[79,18],[80,19],[85,20],[81,21],[77,9],[70,22],[82,23],[73,24],[72,25],[64,26],[71,27],[67,9],[69,28],[68,29],[62,9]],"exportedModulesMap":[[93,1],[98,2],[97,3],[95,4],[96,5],[94,6],[89,30],[88,31],[87,32],[83,33],[65,34],[74,35],[75,36],[84,16],[76,37],[78,38],[79,38],[80,36],[85,39],[81,34],[70,32],[82,40],[73,41],[72,42],[71,43],[69,44],[68,45]],"semanticDiagnosticsPerFile":[90,93,92,98,91,97,95,96,94,61,58,59,10,11,15,14,2,16,17,18,19,20,21,22,23,3,4,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,60,53,54,57,55,56,1,13,12,63,89,86,88,87,83,65,74,75,66,84,76,78,79,80,85,81,77,70,82,73,72,64,71,67,69,68,62]},"version":"5.1.6"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2022.full.d.ts","../node_modules/tslib/tslib.d.ts","../src/types.ts","../src/deep_equals.ts","../src/path/token.ts","../src/path/errors.ts","../src/path/functions/function.ts","../src/pointer/errors.ts","../src/pointer/pointer.ts","../src/pointer/index.ts","../src/path/node.ts","../src/path/types.ts","../src/path/selectors.ts","../src/path/path.ts","../src/path/expression.ts","../src/path/functions/count.ts","../src/path/functions/length.ts","../src/path/lru_cache.ts","../src/path/functions/match.ts","../src/path/functions/search.ts","../src/path/functions/value.ts","../src/path/lex.ts","../src/path/parse.ts","../src/path/environment.ts","../src/path/functions/index.ts","../src/path/index.ts","../src/patch/errors.ts","../src/patch/patch.ts","../src/patch/index.ts","../src/index.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"930b0e15811f84e203d3c23508674d5ded88266df4b10abee7b31b2ac77632d2","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1df2366de6650547b3dc1d7c4147355c0f6b4729c964e3839636fa418982d131","7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"33284ec0f15a0155435b2ed597c4f33933487cbe754c656176f3e11a1cc1be9c","signature":"79b6784fd76df7cd11de1c79d468964032e484a46572770c6e8f085543054b04"},{"version":"4678ace15cff1f5b0d70165cedf9a583c6f5a16a268a63045b4fe9817cfce084","signature":"2513d5bb1f4f9bc86ab56519a27b41445a9f5f060e5d5abe8f8d4b623e7194c0"},{"version":"a1dc8e874322f03d906d42d47ca8643b86cce6622e93edfd37e0c587f4dc2b0b","signature":"0485a2a81426be0d208698398a224e16e895f662f022e308fe39bfcc7d31128e"},{"version":"a8eebb3b9a3473196eace37ebc460cbbf9d5dcf2ce9efff018eeab0afce266b2","signature":"b6d013de74067a30e0a9b9efd9e73b2adb0345ec26ffb2b059dc54f6c2f58d34"},{"version":"1656d694529d020456610597d43498686fe3a11e986dc33f1f9457e846e411ff","signature":"96397fcc8549ae1cc26e5380314a772ef519caed2dffd5bb7f670512868d7014"},{"version":"cee423a49db96ed018ecc3c0ce1f715c39c6d7b111bd9298154eab20cfc3ce71","signature":"68614b45b0599d1d5f250f6f3659b4eba0066298a171944e3b6111bdbb3f85e2"},{"version":"0e73b7863209d417c3a24f4e4ea33565fbc933dc8534bb27ce8a0f24306ca3a6","signature":"c7d6a1ef7dd2dd9ccd00f352184c55ccf7aead988b8ab72ed4502385aa8c1faa"},{"version":"f46b0482ac5cb9f65d936371575fec5c5cd5cf72e69f92cb193e9e884b32cf51","signature":"d3d4304cdfee7ddd8e4c5edf9a2274ea6c206101bdd541be77bd8f33a7e795fb"},{"version":"e73cb5a2fe97407f07772f4f8e0598bac7b3bd313b9b6c43d635ec259dd916ae","signature":"92377ec25b8b22b06be4193067c78111c7ee0c04a7a71c9f41c0bd1b06f63394"},{"version":"c6321a4809e904e50adfa8d718bbb7b3fd3be1da7e727c99290d8541b217f009","signature":"d5ae395dbc06792b90c207c39015bd6634a45935c678552e7752a46aa764a175"},{"version":"4a84c485224d96c0b8892b739d0678e35032cbcdb7cc4c87736beec961a4bb88","signature":"b9dfeca10ef5aa1909779781494ed762e899315611e0ba8e9ebec6ae745b1391"},{"version":"9302f71824ff7c067dc1479a2bf49ae11aab6f34c6ae6ddb72f32ee6ccc5a5a0","signature":"7422237628e2b30df797b76e1a35bc55d3b9640f8c3b277aaee4449af13c43cd"},{"version":"d39349b5cd62c42f44bd3951ff2026ba7179111fdbb8b75bb8816c4771fd6448","signature":"c7f64d0c25bcc724e4d037317f5f5ed29d5e1fe1682380eb7855f2704dff4aeb"},{"version":"387bcfd3dfe23ce2a90da091e614f34215a2f649195722974cb5f475d9e4d293","signature":"7d049ebd3d8b13384ed983fb766bab9e8f4233223899cf1b47d7bbba308cbc8e"},{"version":"e3af45db67cf30e8891f29fbfb24839da0f0041d8ff2be9a01d367bb72e810f1","signature":"2dee7a558d8833901919cb779f0276f0e3bec45f49b8af10410cd4f4d89b53ed"},{"version":"d07dfddbd00e64ae9f775398c1a2625c515b74ded91c0c4e0bbe461abb5152a3","signature":"e72666ab28f3e60e79c0c7fe4a735dfd9d1dd8a5e494aca59095e1d48afb5329"},{"version":"012c789415f07ead73a95f2f52dd246786773df5fd4d9c24df1d77f722060047","signature":"2bf1ae2d19910febdc6f2ab43dd27613e0295dc82c171338392e9902985a93c7"},{"version":"65be835667a6bd146bf60cd238f1148fc1c5841174e7135d75a4f59a7de3b8fc","signature":"00d01c466ba665becd5848937521885fb00420b4861cd42675b65e29efc9bd0e"},{"version":"6db1a41bb47bede4105120bdd88e7b70d7883e978f19b653e1acdc113d5a0074","signature":"fb9839adb715ca2d59c9bf02229e4430d758bc29d26a83ca5323d3e03b8b9ef7"},{"version":"c57ed0a2a6b1d08056c2d9e043f0fcc5379a1a84e834454f27a3ac80c3d11533","signature":"d4256277876cde4925d92ba74eff45117237d810b85647f1b3382d752ecd0af2"},{"version":"ba85602cc1c04edab83d22a018c8f7e1b6e0938724ab9599a2a15ec28ee12375","signature":"3c8a1537d6b83e53d919e93d43a88c1a1d252a78d7ad0cae78c2aa9ca73851f9"},{"version":"3832b72ad9de052b59da1bb87de5191b62bee5951c0ff93b8c2317faa646c77e","signature":"ffccc71daac71cc3623b707965934f2723a2b4e1f8a55ac21ce8bb59ca15c7d9"},"3f80ab14a6fa145abc3560184eb4823522f938f6b7e5eb49a84b34c333633499",{"version":"309c1dc0781951f6c47a4ed52d56a88975e3286e5b91a6f148c4871f251b09b8","signature":"211ebf9b334a68f51840e02c0fbacbc1695527405d04b41d053602d01ac28f5c"},{"version":"67ca17abe3cabfac13df8e108344f54755ecf85e900c71dfd277f7b484d96eff","signature":"e3d508e6cbf8abaf1aee6c0cfda75d1475845a76f1a70f95636e838d3af44895"},{"version":"e3d5b0648a7efd2a4a1407084245b467cfcd54b0de4dd1b7da972dd3fad6ace8","signature":"643c93cfe91a7df799ae343b715216c842c6e6af7d2e3429b95f517e4ef14bf6"},{"version":"1b9a44d773153d5e38c5c1a683990694b13a7ca68195ab1b01424f92e7cd62cf","signature":"4a01d0c781217f94ad852ce1cefc50e78202de4be411780edb7a8cae8de4815a"},{"version":"02b4565c184dc9850acd489ef089f581d633073907766b7db111aac73710e3f0","signature":"772f2576bd4ef61c341073c837b27edc337b373885a050a02b036c60ab14f450"},"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"b2fdcc3836d425833af10e536ae5491c34e218bc71870f12a401720f874b6ce4","affectsGlobalScope":true}],"root":[[62,89]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./","removeComments":false,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[92],[94,97],[90,96],[94],[91,95],[93],[61,62],[61,62,69,85,88],[61],[61,62,86,87],[61,62,63,67,69,86],[61,62,64,65,66,70,73,74,75,76,78,79,80,81,82],[61,64],[61,62,63,64,65,66,70,71,73],[61,66,70],[61,66,75,76,78,79,80],[61,62,66,71],[61,66,77],[61,66,70,71],[61,62,64,65,70,71,72,73,74,83,84],[61,64,65],[61,62,69],[61,64,65,66,72,73,74,83],[61,62,70,72,83],[61,62,64,65,70,71,74,83],[61,65],[61,62,83],[61,62,67,68],[61,62,67],[62,69,85,88],[62,86,87],[62,69],[62,64,66,70,73,74],[64],[64,70,71,73],[66,70],[66,71],[66],[62,64,65,70,71,72,73,74,83,84],[64,72,74,83],[62,70,72,83],[64,70,74,83],[62,83],[62,67,68],[62]],"referencedMap":[[93,1],[98,2],[97,3],[95,4],[96,5],[94,6],[63,7],[89,8],[86,9],[88,10],[87,11],[83,12],[65,13],[74,14],[75,15],[66,9],[84,16],[76,17],[78,18],[79,18],[80,19],[85,20],[81,21],[77,9],[70,22],[82,23],[73,24],[72,25],[64,26],[71,27],[67,9],[69,28],[68,29],[62,9]],"exportedModulesMap":[[93,1],[98,2],[97,3],[95,4],[96,5],[94,6],[89,30],[88,31],[87,32],[83,33],[65,34],[74,35],[75,36],[84,16],[76,37],[78,38],[79,38],[80,36],[85,39],[81,34],[70,32],[82,40],[73,41],[72,42],[71,43],[69,44],[68,45]],"semanticDiagnosticsPerFile":[90,93,92,98,91,97,95,96,94,61,58,59,10,11,15,14,2,16,17,18,19,20,21,22,23,3,4,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,60,53,54,57,55,56,1,13,12,63,89,86,88,87,83,65,74,75,66,84,76,78,79,80,85,81,77,70,82,73,72,64,71,67,69,68,62]},"version":"5.1.6"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-p3",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "author": "James Prior",
5
5
  "license": "MIT",
6
6
  "description": "JSONPath, JSON Pointer and JSON Patch",