source: node_modules/fast-json-patch/index.mjs@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 659 bytes
Line 
1export * from './module/core.mjs';
2export * from './module/duplex.mjs';
3export {
4 PatchError as JsonPatchError,
5 _deepClone as deepClone,
6 escapePathComponent,
7 unescapePathComponent
8} from './module/helpers.mjs';
9
10
11/**
12 * Default export for backwards compat
13 */
14
15import * as core from './module/core.mjs';
16import * as duplex from './module/duplex.mjs';
17import {
18 PatchError as JsonPatchError,
19 _deepClone as deepClone,
20 escapePathComponent,
21 unescapePathComponent
22} from './module/helpers.mjs';
23
24export default Object.assign({}, core, duplex, {
25 JsonPatchError,
26 deepClone,
27 escapePathComponent,
28 unescapePathComponent
29});
Note: See TracBrowser for help on using the repository browser.