forked from Starcounter-Jack/JSON-Patch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.mjs
More file actions
29 lines (25 loc) · 659 Bytes
/
index.mjs
File metadata and controls
29 lines (25 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export * from './module/core.mjs';
export * from './module/duplex.mjs';
export {
PatchError as JsonPatchError,
_deepClone as deepClone,
escapePathComponent,
unescapePathComponent
} from './module/helpers.mjs';
/**
* Default export for backwards compat
*/
import * as core from './module/core.mjs';
import * as duplex from './module/duplex.mjs';
import {
PatchError as JsonPatchError,
_deepClone as deepClone,
escapePathComponent,
unescapePathComponent
} from './module/helpers.mjs';
export default Object.assign({}, core, duplex, {
JsonPatchError,
deepClone,
escapePathComponent,
unescapePathComponent
});