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