json10 1.0.33 → 1.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.d.ts +0 -0
- package/app.js +2 -0
- package/app.js.map +1 -0
- package/browser/README.md +24 -0
- package/browser/esm2020/json10.mjs +5 -0
- package/browser/esm2020/lib/index.mjs +56 -0
- package/browser/esm2020/public-api.mjs +2 -0
- package/browser/{index.js → fesm2015/json10.mjs} +9 -2
- package/browser/fesm2015/json10.mjs.map +1 -0
- package/{client/index.js → browser/fesm2020/json10.mjs} +9 -2
- package/browser/fesm2020/json10.mjs.map +1 -0
- package/browser/json10.d.ts +5 -0
- package/browser/{index.d.ts → lib/index.d.ts} +0 -0
- package/browser/package.json +31 -0
- package/browser/public-api.d.ts +1 -0
- package/client/README.md +24 -0
- package/client/esm2020/json10.mjs +5 -0
- package/client/esm2020/lib/index.mjs +56 -0
- package/client/esm2020/public-api.mjs +2 -0
- package/client/fesm2015/json10.mjs +63 -0
- package/client/fesm2015/json10.mjs.map +1 -0
- package/client/fesm2020/json10.mjs +63 -0
- package/client/fesm2020/json10.mjs.map +1 -0
- package/client/json10.d.ts +5 -0
- package/client/{index.d.ts → lib/index.d.ts} +0 -0
- package/client/package.json +25 -23
- package/client/public-api.d.ts +1 -0
- package/index.d.ts +1 -15
- package/index.js +4 -63
- package/index.js.map +1 -1
- package/lib/index.d.ts +15 -0
- package/lib/index.js +66 -0
- package/lib/index.js.map +1 -0
- package/package.json +3 -3
- package/package.json_devDependencies.json +25 -25
- package/package.json_tnp.json +6 -2
- package/package.json_tnp.json5 +38 -0
- package/tmp-environment.json +77 -111
- package/browser/es5/index.js +0 -99
- package/browser/index.js.map +0 -1
- package/client/es5/index.js +0 -99
- package/client/index.js.map +0 -1
package/index.js
CHANGED
|
@@ -1,65 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
// import { Log } from 'ng2-logger'
|
|
8
|
-
// const log = Log.create('JSON10')
|
|
9
|
-
// let counter = 0
|
|
10
|
-
var JSON10 = /** @class */ (function () {
|
|
11
|
-
function JSON10() {
|
|
12
|
-
}
|
|
13
|
-
JSON10.structureArray = function (anyJSON, options) {
|
|
14
|
-
var pathes = [];
|
|
15
|
-
var _a = options || {}, include = _a.include, exclude = _a.exclude;
|
|
16
|
-
lodash_walk_object_1.walk.Object(anyJSON, function (value, lodashPath) {
|
|
17
|
-
if (!tnp_core_1._.isUndefined(value)) {
|
|
18
|
-
pathes.push(lodashPath);
|
|
19
|
-
}
|
|
20
|
-
}, { include: include, exclude: exclude, checkCircural: true });
|
|
21
|
-
return pathes;
|
|
22
|
-
};
|
|
23
|
-
JSON10.cleaned = function (json, onCircs, options) {
|
|
24
|
-
// console.log('BETTER SRUGUB', json)
|
|
25
|
-
var result = tnp_core_1._.isArray(json) ? [] : {};
|
|
26
|
-
var classFN = typescript_class_helpers_1.CLASS.OBJECT(json).isClassObject && typescript_class_helpers_1.CLASS.getFromObject(json);
|
|
27
|
-
var _a = options || { exclude: [], include: [], breadthWalk: false }, exclude = _a.exclude, include = _a.include, breadthWalk = _a.breadthWalk;
|
|
28
|
-
var circs = lodash_walk_object_1.walk.Object(json, function (value, lodashPath, changeValueTo, options) {
|
|
29
|
-
if (tnp_core_1._.isObject(value) && options.isCircural) {
|
|
30
|
-
tnp_core_1._.set(result, lodashPath, null);
|
|
31
|
-
}
|
|
32
|
-
else {
|
|
33
|
-
tnp_core_1._.set(result, lodashPath, tnp_core_1._.cloneDeep(value));
|
|
34
|
-
}
|
|
35
|
-
}, { include: include, exclude: exclude, breadthWalk: breadthWalk, checkCircural: true }).circs;
|
|
36
|
-
if (tnp_core_1._.isFunction(onCircs)) {
|
|
37
|
-
onCircs(circs);
|
|
38
|
-
}
|
|
39
|
-
return tnp_core_1._.isFunction(classFN) ? tnp_core_1._.merge(new classFN(), result) : result;
|
|
40
|
-
};
|
|
41
|
-
JSON10.stringify = function (anyJSON, replace, spaces, onCircs) {
|
|
42
|
-
var json = this.cleaned(anyJSON, onCircs);
|
|
43
|
-
return JSON.stringify(json, replace, spaces);
|
|
44
|
-
};
|
|
45
|
-
JSON10.parse = function (json, circs) {
|
|
46
|
-
if (circs === void 0) { circs = []; }
|
|
47
|
-
var res = JSON.parse(json);
|
|
48
|
-
if (tnp_core_1._.isArray(circs)) {
|
|
49
|
-
circs.forEach(function (_a) {
|
|
50
|
-
var circuralTargetPath = _a.circuralTargetPath, pathToObj = _a.pathToObj;
|
|
51
|
-
if (circuralTargetPath === '') {
|
|
52
|
-
tnp_core_1._.set(res, pathToObj, res);
|
|
53
|
-
}
|
|
54
|
-
else {
|
|
55
|
-
var v = tnp_core_1._.get(res, circuralTargetPath);
|
|
56
|
-
tnp_core_1._.set(res, pathToObj, v);
|
|
57
|
-
}
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
return res;
|
|
61
|
-
};
|
|
62
|
-
return JSON10;
|
|
63
|
-
}());
|
|
64
|
-
exports.JSON10 = JSON10;
|
|
65
|
-
//# sourceMappingURL=index.js.map
|
|
3
|
+
var tslib_1 = require("tslib");
|
|
4
|
+
(0, tslib_1.__exportStar)(require("./lib"), exports);
|
|
5
|
+
//# sourceMappingURL=index.js.map
|
|
6
|
+
// @fixed
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,qDAAsB"}
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Models } from 'lodash-walk-object';
|
|
2
|
+
export declare type Circ = Models.Circ;
|
|
3
|
+
export declare class JSON10 {
|
|
4
|
+
static structureArray(anyJSON: Object, options?: {
|
|
5
|
+
include?: string[];
|
|
6
|
+
exclude?: string[];
|
|
7
|
+
}): any[];
|
|
8
|
+
static cleaned(json: any, onCircs?: (circs: Circ[]) => any, options?: {
|
|
9
|
+
exclude?: string[];
|
|
10
|
+
include?: string[];
|
|
11
|
+
breadthWalk?: boolean;
|
|
12
|
+
}): any;
|
|
13
|
+
static stringify(anyJSON: Object, replace?: any, spaces?: number, onCircs?: (circs: Circ[]) => any): string;
|
|
14
|
+
static parse(json: string, circs?: Circ[]): any;
|
|
15
|
+
}
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.JSON10 = void 0;
|
|
4
|
+
var tnp_core_1 = require("tnp-core");
|
|
5
|
+
var lodash_walk_object_1 = require("lodash-walk-object");
|
|
6
|
+
var typescript_class_helpers_1 = require("typescript-class-helpers");
|
|
7
|
+
// import { Log } from 'ng2-logger'
|
|
8
|
+
// const log = Log.create('JSON10')
|
|
9
|
+
// let counter = 0
|
|
10
|
+
var JSON10 = /** @class */ (function () {
|
|
11
|
+
function JSON10() {
|
|
12
|
+
}
|
|
13
|
+
JSON10.structureArray = function (anyJSON, options) {
|
|
14
|
+
var pathes = [];
|
|
15
|
+
var _a = options || {}, include = _a.include, exclude = _a.exclude;
|
|
16
|
+
lodash_walk_object_1.walk.Object(anyJSON, function (value, lodashPath) {
|
|
17
|
+
if (!tnp_core_1._.isUndefined(value)) {
|
|
18
|
+
pathes.push(lodashPath);
|
|
19
|
+
}
|
|
20
|
+
}, { include: include, exclude: exclude, checkCircural: true });
|
|
21
|
+
return pathes;
|
|
22
|
+
};
|
|
23
|
+
JSON10.cleaned = function (json, onCircs, options) {
|
|
24
|
+
// console.log('BETTER SRUGUB', json)
|
|
25
|
+
var result = tnp_core_1._.isArray(json) ? [] : {};
|
|
26
|
+
var classFN = typescript_class_helpers_1.CLASS.OBJECT(json).isClassObject && typescript_class_helpers_1.CLASS.getFromObject(json);
|
|
27
|
+
var _a = options || { exclude: [], include: [], breadthWalk: false }, exclude = _a.exclude, include = _a.include, breadthWalk = _a.breadthWalk;
|
|
28
|
+
var circs = lodash_walk_object_1.walk.Object(json, function (value, lodashPath, changeValueTo, options) {
|
|
29
|
+
if (tnp_core_1._.isObject(value) && options.isCircural) {
|
|
30
|
+
tnp_core_1._.set(result, lodashPath, null);
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
tnp_core_1._.set(result, lodashPath, tnp_core_1._.cloneDeep(value));
|
|
34
|
+
}
|
|
35
|
+
}, { include: include, exclude: exclude, breadthWalk: breadthWalk, checkCircural: true }).circs;
|
|
36
|
+
if (tnp_core_1._.isFunction(onCircs)) {
|
|
37
|
+
onCircs(circs);
|
|
38
|
+
}
|
|
39
|
+
return tnp_core_1._.isFunction(classFN) ? tnp_core_1._.merge(new classFN(), result) : result;
|
|
40
|
+
};
|
|
41
|
+
JSON10.stringify = function (anyJSON, replace, spaces, onCircs) {
|
|
42
|
+
var json = this.cleaned(anyJSON, onCircs);
|
|
43
|
+
return JSON.stringify(json, replace, spaces);
|
|
44
|
+
};
|
|
45
|
+
JSON10.parse = function (json, circs) {
|
|
46
|
+
if (circs === void 0) { circs = []; }
|
|
47
|
+
var res = JSON.parse(json);
|
|
48
|
+
if (tnp_core_1._.isArray(circs)) {
|
|
49
|
+
circs.forEach(function (_a) {
|
|
50
|
+
var circuralTargetPath = _a.circuralTargetPath, pathToObj = _a.pathToObj;
|
|
51
|
+
if (circuralTargetPath === '') {
|
|
52
|
+
tnp_core_1._.set(res, pathToObj, res);
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
var v = tnp_core_1._.get(res, circuralTargetPath);
|
|
56
|
+
tnp_core_1._.set(res, pathToObj, v);
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
return res;
|
|
61
|
+
};
|
|
62
|
+
return JSON10;
|
|
63
|
+
}());
|
|
64
|
+
exports.JSON10 = JSON10;
|
|
65
|
+
//# sourceMappingURL=index.js.map
|
|
66
|
+
// @fixed
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/lib/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "json10",
|
|
3
3
|
"description": "Handle circural references, comments and many more inside JSON",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.38",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "mocha --require ts-node/register src/**/*.spec.ts",
|
|
7
7
|
"test:watch": "mocha --compilers ts-node/register src/**/*.spec.ts --watch"
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/darekf77/json10#readme",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"lodash-walk-object": "~1.0.
|
|
24
|
+
"lodash-walk-object": "~1.0.39"
|
|
25
25
|
},
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"private": false,
|
|
28
|
-
"lastBuildTagHash": "
|
|
28
|
+
"lastBuildTagHash": "e1b1a1b14addc2b3805bbc5845279e846dce596d"
|
|
29
29
|
}
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
"axios": "0.17.1",
|
|
64
64
|
"babel-cli": "6.26.0",
|
|
65
65
|
"babel-preset-env": "1.7.0",
|
|
66
|
-
"background-worker-process": "~0.0.
|
|
66
|
+
"background-worker-process": "~0.0.34",
|
|
67
67
|
"bcryptjs": "2.4.3",
|
|
68
68
|
"body-parser": "1.18.2",
|
|
69
69
|
"bootstrap": "4.3.1",
|
|
70
|
-
"bs4-breakpoint": "~2.0.
|
|
70
|
+
"bs4-breakpoint": "~2.0.40",
|
|
71
71
|
"buffer-shims": "1.0.0",
|
|
72
|
-
"button-dropdown": "~1.0.
|
|
72
|
+
"button-dropdown": "~1.0.45",
|
|
73
73
|
"callsite-record": "4.1.3",
|
|
74
74
|
"chai": "4.2.0",
|
|
75
75
|
"chalk": "2.3.2",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"http-proxy": "1.16.2",
|
|
116
116
|
"http-proxy-middleware": "0.19.1",
|
|
117
117
|
"http-server": "0.11.1",
|
|
118
|
-
"incremental-compiler": "~1.1.
|
|
118
|
+
"incremental-compiler": "~1.1.52",
|
|
119
119
|
"inquirer": "7.3.3",
|
|
120
120
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
121
121
|
"is-elevated": "3.0.0",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"jasmine-core": "3.5.0",
|
|
124
124
|
"jasmine-spec-reporter": "4.2.1",
|
|
125
125
|
"json-stringify-safe": "5.0.1",
|
|
126
|
-
"json10": "~1.0.
|
|
126
|
+
"json10": "~1.0.33",
|
|
127
127
|
"json5": "2.1.3",
|
|
128
128
|
"json5-writer": "0.2.0",
|
|
129
129
|
"karma": "5.0.0",
|
|
@@ -136,22 +136,22 @@
|
|
|
136
136
|
"lockfile": "1.0.4",
|
|
137
137
|
"lodash": "4.17.4",
|
|
138
138
|
"lowdb": "1.0.0",
|
|
139
|
-
"magic-renamer": "~0.0.
|
|
139
|
+
"magic-renamer": "~0.0.19",
|
|
140
140
|
"material-design-icons": "3.0.1",
|
|
141
141
|
"method-override": "2.3.10",
|
|
142
142
|
"minimist": "1.2.0",
|
|
143
143
|
"mkdirp": "0.5.1",
|
|
144
144
|
"mocha": "5.2.0",
|
|
145
145
|
"moment": "2.22.2",
|
|
146
|
-
"morphi": "~4.0.
|
|
146
|
+
"morphi": "~4.0.53",
|
|
147
147
|
"ng-modal-lib": "0.0.6",
|
|
148
148
|
"ng-packagr": "5.7.1",
|
|
149
|
-
"ng-talkback": "~2.4.
|
|
149
|
+
"ng-talkback": "~2.4.24",
|
|
150
150
|
"ng2-file-upload": "1.3.0",
|
|
151
|
-
"ng2-logger": "~8.0.
|
|
152
|
-
"ng2-rest": "~11.0.
|
|
153
|
-
"ng4-icons": "~0.0.
|
|
154
|
-
"ng4-modal": "~0.0.
|
|
151
|
+
"ng2-logger": "~8.0.20",
|
|
152
|
+
"ng2-rest": "~11.0.41",
|
|
153
|
+
"ng4-icons": "~0.0.29",
|
|
154
|
+
"ng4-modal": "~0.0.29",
|
|
155
155
|
"ngx-bootstrap": "5.2.0",
|
|
156
156
|
"ngx-breadcrumbs": "0.0.3",
|
|
157
157
|
"ngx-editor": "4.1.0",
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"ngx-toastr": "11.2.1",
|
|
162
162
|
"ngx-wig": "8.0.0",
|
|
163
163
|
"node-cli-test": "0.0.2",
|
|
164
|
-
"node-cli-tester": "~0.0.
|
|
164
|
+
"node-cli-tester": "~0.0.21",
|
|
165
165
|
"node-localstorage": "2.1.6",
|
|
166
166
|
"node-notifier": "6.0.0",
|
|
167
167
|
"nodemon": "1.14.11",
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
"ps-node": "0.1.6",
|
|
183
183
|
"q": "1.5.1",
|
|
184
184
|
"randomcolor": "0.5.3",
|
|
185
|
-
"record-replay-req-res-scenario": "~0.0.
|
|
185
|
+
"record-replay-req-res-scenario": "~0.0.25",
|
|
186
186
|
"reflect-metadata": "0.1.10",
|
|
187
187
|
"rimraf": "2.6.2",
|
|
188
188
|
"rxjs": "6.5.4",
|
|
@@ -191,19 +191,19 @@
|
|
|
191
191
|
"sloc": "0.2.0",
|
|
192
192
|
"socket.io": "2.4.1",
|
|
193
193
|
"sort-package-json": "1.11.0",
|
|
194
|
-
"static-columns": "~2.0.
|
|
194
|
+
"static-columns": "~2.0.12",
|
|
195
195
|
"string-similarity": "4.0.2",
|
|
196
196
|
"sudo-block": "3.0.0",
|
|
197
197
|
"systeminformation": "3.45.7",
|
|
198
198
|
"task.js": "0.1.5",
|
|
199
|
-
"tnp-cli": "~2.0.
|
|
200
|
-
"tnp-config": "~1.0.
|
|
201
|
-
"tnp-core": "~1.0.
|
|
202
|
-
"tnp-db": "~0.0.
|
|
203
|
-
"tnp-helpers": "~0.0.
|
|
204
|
-
"tnp-models": "~0.0.
|
|
205
|
-
"tnp-tools": "~0.0.
|
|
206
|
-
"tnp-ui": "~0.0.
|
|
199
|
+
"tnp-cli": "~2.0.20",
|
|
200
|
+
"tnp-config": "~1.0.20",
|
|
201
|
+
"tnp-core": "~1.0.34",
|
|
202
|
+
"tnp-db": "~0.0.42",
|
|
203
|
+
"tnp-helpers": "~0.0.70",
|
|
204
|
+
"tnp-models": "~0.0.36",
|
|
205
|
+
"tnp-tools": "~0.0.45",
|
|
206
|
+
"tnp-ui": "~0.0.32",
|
|
207
207
|
"ts-loader": "7.0.4",
|
|
208
208
|
"ts-node": "8.3.0",
|
|
209
209
|
"tsickle": "0.26.0",
|
|
@@ -211,13 +211,13 @@
|
|
|
211
211
|
"tslint": "6.1.0",
|
|
212
212
|
"typeorm": "~0.2.7",
|
|
213
213
|
"typescript": "4.1.5",
|
|
214
|
-
"typescript-class-helpers": "~1.0.
|
|
214
|
+
"typescript-class-helpers": "~1.0.42",
|
|
215
215
|
"typescript-formatter": "7.2.2",
|
|
216
216
|
"uglifyjs-webpack-plugin": "2.2.0",
|
|
217
217
|
"underscore": "1.9.1",
|
|
218
218
|
"uuid": "8.3.2",
|
|
219
219
|
"validator": "9.2.0",
|
|
220
|
-
"vpn-split": "~0.0.
|
|
220
|
+
"vpn-split": "~0.0.17",
|
|
221
221
|
"watch": "1.0.2",
|
|
222
222
|
"webpack-cli": "3.3.11",
|
|
223
223
|
"zone.js": "0.10.2"
|
package/package.json_tnp.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"resources": [],
|
|
3
3
|
"type": "isomorphic-lib",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "v3",
|
|
5
|
+
"additionalNpmNames": [
|
|
6
|
+
"firedev-json"
|
|
7
|
+
],
|
|
5
8
|
"overrided": {
|
|
6
9
|
"includeAsDev": "*",
|
|
7
10
|
"includeOnly": [
|
|
@@ -30,5 +33,6 @@
|
|
|
30
33
|
"ng2-rest",
|
|
31
34
|
"docs",
|
|
32
35
|
"documentation"
|
|
33
|
-
]
|
|
36
|
+
],
|
|
37
|
+
"workerPlugins": {}
|
|
34
38
|
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resources": [],
|
|
3
|
+
"overrided": {
|
|
4
|
+
"includeAsDev": "*",
|
|
5
|
+
"includeOnly": [
|
|
6
|
+
"lodash-walk-object"
|
|
7
|
+
],
|
|
8
|
+
"ignoreDepsPattern": [],
|
|
9
|
+
"dependencies": {},
|
|
10
|
+
"linkedFolders": []
|
|
11
|
+
},
|
|
12
|
+
"linkedProjects": [],
|
|
13
|
+
"libReleaseOptions": {
|
|
14
|
+
"nodts": false,
|
|
15
|
+
"obscure": false,
|
|
16
|
+
"ugly": false
|
|
17
|
+
},
|
|
18
|
+
"type": "isomorphic-lib",
|
|
19
|
+
"version": "v3",
|
|
20
|
+
"additionalNpmNames": [
|
|
21
|
+
"firedev-json"
|
|
22
|
+
],
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"private": false,
|
|
25
|
+
"scripts": {
|
|
26
|
+
"test": "mocha --require ts-node/register src/**/*.spec.ts",
|
|
27
|
+
"test:watch": "mocha --compilers ts-node/register src/**/*.spec.ts --watch"
|
|
28
|
+
},
|
|
29
|
+
"description": "Handle circural references, comments and many more inside JSON",
|
|
30
|
+
"author": "Dariusz Filipiak",
|
|
31
|
+
"homepage": "https://github.com/darekf77/json10#readme",
|
|
32
|
+
"keywords": [
|
|
33
|
+
"ng2-rest",
|
|
34
|
+
"docs",
|
|
35
|
+
"documentation"
|
|
36
|
+
],
|
|
37
|
+
"workerPlugins": {}
|
|
38
|
+
}
|