source: node_modules/fast-json-patch/index.ts@ 65b6638

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

Initial commit

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