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 | |
---|
1 | export * from './module/core.mjs';
|
---|
2 | export * from './module/duplex.mjs';
|
---|
3 | export {
|
---|
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 |
|
---|
15 | import * as core from './module/core.mjs';
|
---|
16 | import * as duplex from './module/duplex.mjs';
|
---|
17 | import {
|
---|
18 | PatchError as JsonPatchError,
|
---|
19 | _deepClone as deepClone,
|
---|
20 | escapePathComponent,
|
---|
21 | unescapePathComponent
|
---|
22 | } from './module/helpers.mjs';
|
---|
23 |
|
---|
24 | export default Object.assign({}, core, duplex, {
|
---|
25 | JsonPatchError,
|
---|
26 | deepClone,
|
---|
27 | escapePathComponent,
|
---|
28 | unescapePathComponent
|
---|
29 | }); |
---|
Note:
See
TracBrowser
for help on using the repository browser.