@dxos/effect 0.8.4-main.fffef41 → 0.8.4-staging.ac66bdf99f

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.
Files changed (60) hide show
  1. package/dist/lib/browser/chunk-CGS2ULMK.mjs +11 -0
  2. package/dist/lib/browser/chunk-CGS2ULMK.mjs.map +7 -0
  3. package/dist/lib/browser/index.mjs +445 -230
  4. package/dist/lib/browser/index.mjs.map +4 -4
  5. package/dist/lib/browser/meta.json +1 -1
  6. package/dist/lib/browser/testing.mjs +39 -0
  7. package/dist/lib/browser/testing.mjs.map +7 -0
  8. package/dist/lib/node-esm/chunk-HSLMI22Q.mjs +11 -0
  9. package/dist/lib/node-esm/chunk-HSLMI22Q.mjs.map +7 -0
  10. package/dist/lib/node-esm/index.mjs +445 -230
  11. package/dist/lib/node-esm/index.mjs.map +4 -4
  12. package/dist/lib/node-esm/meta.json +1 -1
  13. package/dist/lib/node-esm/testing.mjs +39 -0
  14. package/dist/lib/node-esm/testing.mjs.map +7 -0
  15. package/dist/types/src/Performance.d.ts +25 -0
  16. package/dist/types/src/Performance.d.ts.map +1 -0
  17. package/dist/types/src/RuntimeProvider.d.ts +21 -0
  18. package/dist/types/src/RuntimeProvider.d.ts.map +1 -0
  19. package/dist/types/src/ast.d.ts +34 -21
  20. package/dist/types/src/ast.d.ts.map +1 -1
  21. package/dist/types/src/async-task-tagging.d.ts +6 -0
  22. package/dist/types/src/async-task-tagging.d.ts.map +1 -0
  23. package/dist/types/src/atom-kvs.d.ts +19 -0
  24. package/dist/types/src/atom-kvs.d.ts.map +1 -0
  25. package/dist/types/src/dynamic-runtime.d.ts +56 -0
  26. package/dist/types/src/dynamic-runtime.d.ts.map +1 -0
  27. package/dist/types/src/dynamic-runtime.test.d.ts +2 -0
  28. package/dist/types/src/dynamic-runtime.test.d.ts.map +1 -0
  29. package/dist/types/src/errors.d.ts +12 -0
  30. package/dist/types/src/errors.d.ts.map +1 -1
  31. package/dist/types/src/index.d.ts +7 -3
  32. package/dist/types/src/index.d.ts.map +1 -1
  33. package/dist/types/src/{jsonPath.d.ts → json-path.d.ts} +11 -3
  34. package/dist/types/src/json-path.d.ts.map +1 -0
  35. package/dist/types/src/json-path.test.d.ts +2 -0
  36. package/dist/types/src/json-path.test.d.ts.map +1 -0
  37. package/dist/types/src/testing.d.ts +4 -3
  38. package/dist/types/src/testing.d.ts.map +1 -1
  39. package/dist/types/tsconfig.tsbuildinfo +1 -1
  40. package/package.json +30 -11
  41. package/src/Performance.ts +45 -0
  42. package/src/RuntimeProvider.ts +35 -0
  43. package/src/ast.test.ts +35 -8
  44. package/src/ast.ts +95 -91
  45. package/src/async-task-tagging.ts +47 -0
  46. package/src/atom-kvs.ts +35 -0
  47. package/src/dynamic-runtime.test.ts +465 -0
  48. package/src/dynamic-runtime.ts +195 -0
  49. package/src/errors.ts +69 -8
  50. package/src/index.ts +7 -3
  51. package/src/interrupt.test.ts +3 -1
  52. package/src/{jsonPath.test.ts → json-path.test.ts} +47 -8
  53. package/src/{jsonPath.ts → json-path.ts} +26 -3
  54. package/src/layers.test.ts +4 -2
  55. package/src/resource.ts +2 -2
  56. package/src/sanity.test.ts +6 -4
  57. package/src/testing.ts +6 -4
  58. package/dist/types/src/jsonPath.d.ts.map +0 -1
  59. package/dist/types/src/jsonPath.test.d.ts +0 -2
  60. package/dist/types/src/jsonPath.test.d.ts.map +0 -1
package/src/errors.ts CHANGED
@@ -8,10 +8,10 @@ import * as Effect from 'effect/Effect';
8
8
  import * as Exit from 'effect/Exit';
9
9
  import * as GlobalValue from 'effect/GlobalValue';
10
10
  import * as Option from 'effect/Option';
11
+ import * as Runtime from 'effect/Runtime';
11
12
  import type * as Tracer from 'effect/Tracer';
12
13
 
13
14
  const spanSymbol = Symbol.for('effect/SpanAnnotation');
14
- const originalSymbol = Symbol.for('effect/OriginalAnnotation');
15
15
  const spanToTrace = GlobalValue.globalValue('effect/Tracer/spanToTrace', () => new WeakMap());
16
16
  const locationRegex = /\((.*)\)/g;
17
17
 
@@ -21,12 +21,19 @@ const locationRegex = /\((.*)\)/g;
21
21
  * Unwraps error proxy.
22
22
  */
23
23
  const prettyErrorStack = (error: any, appendStacks: string[] = []): any => {
24
+ if (typeof error !== 'object' || error === null) {
25
+ return error;
26
+ }
27
+
24
28
  const span = error[spanSymbol];
25
29
 
26
30
  const lines = typeof error.stack === 'string' ? error.stack.split('\n') : [];
27
31
  const out = [];
28
32
 
29
- let atStack = false;
33
+ // Very hacky way to remove effect runtime internal stack frames.
34
+ let atStack = false,
35
+ inCore = false,
36
+ passedScheduler = false;
30
37
  for (let i = 0; i < lines.length; i++) {
31
38
  if (!atStack && !lines[i].startsWith(' at ')) {
32
39
  out.push(lines[i]);
@@ -44,6 +51,26 @@ const prettyErrorStack = (error: any, appendStacks: string[] = []): any => {
44
51
  if (lines[i].includes('effect_internal_function')) {
45
52
  break;
46
53
  }
54
+
55
+ const filename = lines[i].match(/\/([a-zA-Z0-9_\-.]+):\d+:\d+\)$/)?.[1];
56
+
57
+ if (!inCore && ['core-effect.ts'].includes(filename)) {
58
+ inCore = true;
59
+ }
60
+
61
+ if (inCore && !passedScheduler && ['Scheduler.ts'].includes(filename)) {
62
+ passedScheduler = true;
63
+ continue;
64
+ }
65
+
66
+ if (passedScheduler && !['Scheduler.ts'].includes(filename)) {
67
+ inCore = false;
68
+ }
69
+
70
+ if (inCore) {
71
+ continue;
72
+ }
73
+
47
74
  out.push(
48
75
  lines[i]
49
76
  .replace(/at .*effect_instruction_i.*\((.*)\)/, 'at $1')
@@ -82,9 +109,7 @@ const prettyErrorStack = (error: any, appendStacks: string[] = []): any => {
82
109
 
83
110
  out.push(...appendStacks);
84
111
 
85
- if (error[originalSymbol]) {
86
- error = error[originalSymbol];
87
- }
112
+ error = Cause.originalError(error);
88
113
  if (error.cause) {
89
114
  error.cause = prettyErrorStack(error.cause);
90
115
  }
@@ -118,9 +143,10 @@ export const causeToError = (cause: Cause.Cause<any>): Error => {
118
143
  const errors = [...Chunk.toArray(Cause.failures(cause)), ...Chunk.toArray(Cause.defects(cause))];
119
144
 
120
145
  const getStackFrames = (): string[] => {
121
- const o: { stack: string } = {} as any;
122
- Error.captureStackTrace(o, getStackFrames);
123
- return o.stack.split('\n').slice(1);
146
+ // Bun requies the target object for `captureStackTrace` to be an Error.
147
+ const o = new Error();
148
+ Error.captureStackTrace(o, causeToError);
149
+ return o.stack!.split('\n').slice(1);
124
150
  };
125
151
 
126
152
  const stackFrames = getStackFrames();
@@ -174,6 +200,41 @@ export const runAndForwardErrors = async <A, E>(
174
200
  return unwrapExit(exit);
175
201
  };
176
202
 
203
+ /**
204
+ * Runs the embedded effect asynchronously and throws any failures and defects as errors.
205
+ */
206
+ export const runInRuntime: {
207
+ <R>(
208
+ runtime: Runtime.Runtime<R>,
209
+ ): <A, E>(effect: Effect.Effect<A, E, R>, options?: { signal?: AbortSignal } | undefined) => Promise<A>;
210
+ <R, A, E>(
211
+ runtime: Runtime.Runtime<R>,
212
+ effect: Effect.Effect<A, E, R>,
213
+ options?: { signal?: AbortSignal } | undefined,
214
+ ): Promise<A>;
215
+ } = (...args: any[]): any => {
216
+ if (args.length === 1) {
217
+ const [runtime] = args as [Runtime.Runtime<any>];
218
+ return async (
219
+ effect: Effect.Effect<any, any, any>,
220
+ options?: { signal?: AbortSignal } | undefined,
221
+ ): Promise<any> => {
222
+ const exit = await Runtime.runPromiseExit(runtime, effect, options);
223
+ return unwrapExit(exit);
224
+ };
225
+ } else {
226
+ const [runtime, effect, options] = args as [
227
+ Runtime.Runtime<any>,
228
+ Effect.Effect<any, any, any>,
229
+ { signal?: AbortSignal } | undefined,
230
+ ];
231
+ return (async () => {
232
+ const exit = await Runtime.runPromiseExit(runtime, effect, options);
233
+ return unwrapExit(exit);
234
+ })();
235
+ }
236
+ };
237
+
177
238
  /**
178
239
  * Like `Effect.promise` but also caputes spans for defects.
179
240
  * Workaround for: https://github.com/Effect-TS/effect/issues/5436
package/src/index.ts CHANGED
@@ -3,9 +3,13 @@
3
3
  //
4
4
 
5
5
  export * from './ast';
6
- export * from './jsonPath';
7
- export * from './url';
6
+ export * from './atom-kvs';
8
7
  export * from './context';
8
+ export * as DynamicRuntime from './dynamic-runtime';
9
9
  export * from './errors';
10
- export * from './testing';
10
+ export * from './json-path';
11
11
  export * from './resource';
12
+ export * from './url';
13
+ export * as RuntimeProvider from './RuntimeProvider';
14
+ export * as Performance from './Performance';
15
+ export * from './async-task-tagging';
@@ -7,6 +7,8 @@ import * as Cause from 'effect/Cause';
7
7
  import * as Effect from 'effect/Effect';
8
8
  import * as Fiber from 'effect/Fiber';
9
9
 
10
+ import { runAndForwardErrors } from './errors';
11
+
10
12
  const doWork = Effect.fn('doWork')(function* () {
11
13
  yield* Effect.sleep('1 minute');
12
14
  return 'work done';
@@ -18,7 +20,7 @@ it.effect.skip(
18
20
  function* (_) {
19
21
  const resultFiber = yield* doWork().pipe(Effect.fork);
20
22
  setTimeout(() => {
21
- void Effect.runPromise(Fiber.interrupt(resultFiber));
23
+ void runAndForwardErrors(Fiber.interrupt(resultFiber));
22
24
  }, 2_000);
23
25
 
24
26
  const result = yield* resultFiber;
@@ -4,7 +4,7 @@
4
4
 
5
5
  import { describe, expect, test } from 'vitest';
6
6
 
7
- import { type JsonPath, createJsonPath, getField, isJsonPath, splitJsonPath } from './jsonPath';
7
+ import { type JsonPath, createJsonPath, getField, getValue, isJsonPath, setValue, splitJsonPath } from './json-path';
8
8
 
9
9
  describe('createJsonPath', () => {
10
10
  test('supported path subset', () => {
@@ -32,9 +32,9 @@ describe('createJsonPath', () => {
32
32
 
33
33
  test('path splitting', () => {
34
34
  const cases = [
35
- ['foo.bar[0].baz', ['foo', 'bar', '0', 'baz']],
36
- ['users[1].name', ['users', '1', 'name']],
37
- ['data[0][1]', ['data', '0', '1']],
35
+ ['foo.bar[0].baz', ['foo', 'bar', 0, 'baz']],
36
+ ['users[1].name', ['users', 1, 'name']],
37
+ ['data[0][1]', ['data', 0, 1]],
38
38
  ['simple.path', ['simple', 'path']],
39
39
  ['root', ['root']],
40
40
  ] as const;
@@ -47,15 +47,15 @@ describe('createJsonPath', () => {
47
47
  test('path splitting - extended cases', () => {
48
48
  const cases = [
49
49
  // Multiple consecutive array indices.
50
- ['matrix[0][1][2]', ['matrix', '0', '1', '2']],
50
+ ['matrix[0][1][2]', ['matrix', 0, 1, 2]],
51
51
  // Properties with underscores and $.
52
52
  ['$_foo.bar_baz', ['$_foo', 'bar_baz']],
53
53
  // Deep nesting.
54
- ['very.deep.nested[0].property.path[5]', ['very', 'deep', 'nested', '0', 'property', 'path', '5']],
54
+ ['very.deep.nested[0].property.path[5]', ['very', 'deep', 'nested', 0, 'property', 'path', 5]],
55
55
  // Single character properties.
56
- ['a[0].b.c', ['a', '0', 'b', 'c']],
56
+ ['a[0].b.c', ['a', 0, 'b', 'c']],
57
57
  // Properties containing numbers.
58
- ['prop123.item456[7]', ['prop123', 'item456', '7']],
58
+ ['prop123.item456[7]', ['prop123', 'item456', 7]],
59
59
  ] as const;
60
60
 
61
61
  cases.forEach(([input, expected]) => {
@@ -99,3 +99,42 @@ describe('createJsonPath', () => {
99
99
  expect(getField({ a: 'foo' }, 'a' as JsonPath)).toBe('foo');
100
100
  });
101
101
  });
102
+
103
+ describe('Types', () => {
104
+ test('checks sanity', async ({ expect }) => {
105
+ const obj = {};
106
+ expect(obj).to.exist;
107
+ });
108
+ });
109
+
110
+ describe('get/set deep', () => {
111
+ test('get/set operations', ({ expect }) => {
112
+ const obj = {
113
+ name: 'test',
114
+ items: ['a', 'b', 'c'],
115
+ nested: {
116
+ prop: 'value',
117
+ arr: [1, 2, 3],
118
+ },
119
+ };
120
+
121
+ // Basic property access.
122
+ expect(getValue(obj, 'name' as JsonPath)).toBe('test');
123
+
124
+ // Array index access.
125
+ expect(getValue(obj, 'items[1]' as JsonPath)).toBe('b');
126
+
127
+ // Nested property access.
128
+ expect(getValue(obj, 'nested.prop' as JsonPath)).toBe('value');
129
+
130
+ // Nested array access.
131
+ expect(getValue(obj, 'nested.arr[2]' as JsonPath)).toBe(3);
132
+
133
+ // Setting values.
134
+ const updated1 = setValue(obj, 'items[1]' as JsonPath, 'x');
135
+ expect(updated1.items[1]).toBe('x');
136
+
137
+ const updated2 = setValue(obj, 'nested.arr[0]' as JsonPath, 99);
138
+ expect(updated2.nested.arr[0]).toBe(99);
139
+ });
140
+ });
@@ -7,11 +7,15 @@ import * as Schema from 'effect/Schema';
7
7
  import { JSONPath } from 'jsonpath-plus';
8
8
 
9
9
  import { invariant } from '@dxos/invariant';
10
+ import { getDeep, setDeep } from '@dxos/util';
10
11
 
11
12
  export type JsonProp = string & { __JsonPath: true; __JsonProp: true };
12
13
  export type JsonPath = string & { __JsonPath: true };
13
14
 
15
+ // TODO(burdon): Start with "$."?
16
+
14
17
  const PATH_REGEX = /^($|[a-zA-Z_$][\w$]*(?:\.[a-zA-Z_$][\w$]*|\[\d+\](?:\.)?)*$)/;
18
+
15
19
  const PROP_REGEX = /^\w+$/;
16
20
 
17
21
  /**
@@ -51,7 +55,7 @@ export const isJsonPath = (value: unknown): value is JsonPath => {
51
55
  * @param path Array of string or number segments
52
56
  * @returns Valid JsonPath or undefined if invalid
53
57
  */
54
- export const createJsonPath = (path: (string | number)[]): JsonPath => {
58
+ export const createJsonPath = (path: readonly (string | number)[]): JsonPath => {
55
59
  const candidatePath = path
56
60
  .map((p, i) => {
57
61
  if (typeof p === 'number') {
@@ -81,7 +85,7 @@ export const fromEffectValidationPath = (effectPath: string): JsonPath => {
81
85
  * Splits a JsonPath into its constituent parts.
82
86
  * Handles property access and array indexing.
83
87
  */
84
- export const splitJsonPath = (path: JsonPath): string[] => {
88
+ export const splitJsonPath = (path: JsonPath): (string | number)[] => {
85
89
  if (!isJsonPath(path)) {
86
90
  return [];
87
91
  }
@@ -89,14 +93,33 @@ export const splitJsonPath = (path: JsonPath): string[] => {
89
93
  return (
90
94
  path
91
95
  .match(/[a-zA-Z_$][\w$]*|\[\d+\]/g)
92
- ?.map((part) => (part.startsWith('[') ? part.replace(/[[\]]/g, '') : part)) ?? []
96
+ ?.map((part) => part.replace(/[[\]]/g, ''))
97
+ .map((part) => {
98
+ const parsed = Number.parseInt(part, 10);
99
+ return Number.isNaN(parsed) ? part : parsed;
100
+ }) ?? []
93
101
  );
94
102
  };
95
103
 
96
104
  /**
97
105
  * Applies a JsonPath to an object.
98
106
  */
107
+ // TODO(burdon): Reconcile with getValue.
99
108
  export const getField = (object: any, path: JsonPath): any => {
100
109
  // By default, JSONPath returns an array of results.
101
110
  return JSONPath({ path, json: object })[0];
102
111
  };
112
+
113
+ /**
114
+ * Get value from object using JsonPath.
115
+ */
116
+ export const getValue = <T extends object>(obj: T, path: JsonPath): any => {
117
+ return getDeep(obj, splitJsonPath(path));
118
+ };
119
+
120
+ /**
121
+ * Set value on object using JsonPath.
122
+ */
123
+ export const setValue = <T extends object>(obj: T, path: JsonPath, value: any): T => {
124
+ return setDeep(obj, splitJsonPath(path), value);
125
+ };
@@ -10,6 +10,8 @@ import * as Layer from 'effect/Layer';
10
10
  import * as ManagedRuntime from 'effect/ManagedRuntime';
11
11
  import { test } from 'vitest';
12
12
 
13
+ import { runAndForwardErrors } from './errors';
14
+
13
15
  class ClientConfig extends Context.Tag('ClientConfig')<ClientConfig, { endpoint: string }>() {}
14
16
 
15
17
  class Client extends Context.Tag('Client')<Client, { call: () => Effect.Effect<void> }>() {
@@ -76,7 +78,7 @@ class ClientPlugin {
76
78
  async run() {
77
79
  const layer = Layer.provide(Client.layer, this._serverPlugin.clientConfigLayer);
78
80
 
79
- await Effect.runPromise(
81
+ await runAndForwardErrors(
80
82
  Effect.gen(function* () {
81
83
  const client = yield* Client;
82
84
  yield* client.call();
@@ -89,7 +91,7 @@ test.skip('plugins', async () => {
89
91
  const serverPlugin = new ServerPlugin();
90
92
  console.log('ServerPlugin created');
91
93
 
92
- await Effect.runPromise(Effect.sleep(Duration.millis(500)));
94
+ await runAndForwardErrors(Effect.sleep(Duration.millis(500)));
93
95
  console.log('wake up');
94
96
 
95
97
  {
package/src/resource.ts CHANGED
@@ -17,14 +17,14 @@ export const acquireReleaseResource = <T extends Lifecycle>(
17
17
  Effect.gen(function* () {
18
18
  const resource = getResource();
19
19
  yield* Effect.promise(async () => {
20
- resource.open?.();
20
+ await resource.open?.();
21
21
  return undefined;
22
22
  });
23
23
  return resource;
24
24
  }),
25
25
  (resource) =>
26
26
  Effect.promise(async () => {
27
- resource.close?.();
27
+ await resource.close?.();
28
28
  return undefined;
29
29
  }),
30
30
  );
@@ -8,6 +8,8 @@ import { describe, test } from 'vitest';
8
8
 
9
9
  import { log } from '@dxos/log';
10
10
 
11
+ import { runAndForwardErrors } from './errors';
12
+
11
13
  describe('sanity tests', () => {
12
14
  test('function pipeline', async ({ expect }) => {
13
15
  const result = Function.pipe(
@@ -19,7 +21,7 @@ describe('sanity tests', () => {
19
21
  });
20
22
 
21
23
  test('effect pipeline (mixing types)', async ({ expect }) => {
22
- const result = await Effect.runPromise(
24
+ const result = await runAndForwardErrors(
23
25
  Function.pipe(
24
26
  Effect.promise(() => Promise.resolve(100)),
25
27
  Effect.tap((value) => {
@@ -39,7 +41,7 @@ describe('sanity tests', () => {
39
41
  });
40
42
 
41
43
  test('effect pipeline (mixing sync/async)', async ({ expect }) => {
42
- const result = await Effect.runPromise(
44
+ const result = await runAndForwardErrors(
43
45
  Function.pipe(
44
46
  Effect.succeed(100),
45
47
  Effect.tap((value) => {
@@ -59,7 +61,7 @@ describe('sanity tests', () => {
59
61
  });
60
62
 
61
63
  test('error handling', async ({ expect }) => {
62
- Effect.runPromise(
64
+ runAndForwardErrors(
63
65
  Function.pipe(
64
66
  Effect.succeed(10),
65
67
  Effect.map((value) => value * 2),
@@ -75,7 +77,7 @@ describe('sanity tests', () => {
75
77
  ),
76
78
  )
77
79
  .then(() => expect.fail())
78
- .catch((error) => {
80
+ .catch((error: any) => {
79
81
  expect(error).to.be.instanceOf(Error);
80
82
  });
81
83
  });
package/src/testing.ts CHANGED
@@ -16,7 +16,7 @@ export namespace TestHelpers {
16
16
  /**
17
17
  * Skip the test if the condition is false.
18
18
  *
19
- * Exmaple:
19
+ * Example:
20
20
  * ```ts
21
21
  * it.effect(
22
22
  * 'should process an agentic loop using Claude',
@@ -41,7 +41,7 @@ export namespace TestHelpers {
41
41
  /**
42
42
  * Skip the test if the condition is true.
43
43
  *
44
- * Exmaple:
44
+ * Example:
45
45
  * ```ts
46
46
  * it.effect(
47
47
  * 'should process an agentic loop using Claude',
@@ -63,6 +63,8 @@ export namespace TestHelpers {
63
63
  }
64
64
  });
65
65
 
66
+ export const tagEnabled = (tag: TestTag) => process.env.DX_TEST_TAGS?.includes(tag);
67
+
66
68
  /**
67
69
  * Skips this test if the tag is not in the list of tags to run.
68
70
  * Tags are specified in the `DX_TEST_TAGS` environment variable.
@@ -74,7 +76,7 @@ export namespace TestHelpers {
74
76
  (tag: TestTag) =>
75
77
  <A, E, R>(effect: Effect.Effect<A, E, R>, ctx: TestContext): Effect.Effect<A, E, R> =>
76
78
  Effect.gen(function* () {
77
- if (!process.env.DX_TEST_TAGS?.includes(tag)) {
79
+ if (!tagEnabled(tag)) {
78
80
  ctx.skip();
79
81
  } else {
80
82
  return yield* effect;
@@ -84,7 +86,7 @@ export namespace TestHelpers {
84
86
  /**
85
87
  * Provide TestContext from test parameters.
86
88
  *
87
- * Exmaple:
89
+ * Example:
88
90
  * ```ts
89
91
  * it.effect(
90
92
  * 'with context',
@@ -1 +0,0 @@
1
- {"version":3,"file":"jsonPath.d.ts","sourceRoot":"","sources":["../../../src/jsonPath.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAKxC,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG;IAAE,UAAU,EAAE,IAAI,CAAC;IAAC,UAAU,EAAE,IAAI,CAAA;CAAE,CAAC;AACvE,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG;IAAE,UAAU,EAAE,IAAI,CAAA;CAAE,CAAC;AAKrD;;GAEG;AAEH,eAAO,MAAM,QAAQ,EAGR,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;AACrC,eAAO,MAAM,QAAQ,EAIT,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;AAEpC,eAAO,MAAM,UAAU,GAAI,OAAO,OAAO,KAAG,KAAK,IAAI,QAEpD,CAAC;AAEF;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,cAAc,GAAI,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,KAAG,QAa1D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,GAAI,YAAY,MAAM,KAAG,QAK7D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,GAAI,MAAM,QAAQ,KAAG,MAAM,EAUpD,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ,GAAI,QAAQ,GAAG,EAAE,MAAM,QAAQ,KAAG,GAGtD,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=jsonPath.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jsonPath.test.d.ts","sourceRoot":"","sources":["../../../src/jsonPath.test.ts"],"names":[],"mappings":""}