lodash-walk-object 1.0.35 → 1.0.41
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/lib/index.mjs +354 -0
- package/browser/esm2020/lib/models.mjs +2 -0
- package/browser/esm2020/lodash-walk-object.mjs +5 -0
- package/browser/esm2020/public-api.mjs +2 -0
- package/{client/index.js → browser/fesm2015/lodash-walk-object.mjs} +42 -4
- package/browser/fesm2015/lodash-walk-object.mjs.map +1 -0
- package/browser/{index.js → fesm2020/lodash-walk-object.mjs} +42 -4
- package/browser/fesm2020/lodash-walk-object.mjs.map +1 -0
- package/browser/{index.d.ts → lib/index.d.ts} +0 -0
- package/browser/{models.d.ts → lib/models.d.ts} +0 -0
- package/browser/lodash-walk-object.d.ts +5 -0
- package/browser/package.json +31 -0
- package/browser/public-api.d.ts +1 -0
- package/client/README.md +24 -0
- package/client/esm2020/lib/index.mjs +354 -0
- package/client/esm2020/lib/models.mjs +2 -0
- package/client/esm2020/lodash-walk-object.mjs +5 -0
- package/client/esm2020/public-api.mjs +2 -0
- package/client/fesm2015/lodash-walk-object.mjs +360 -0
- package/client/fesm2015/lodash-walk-object.mjs.map +1 -0
- package/client/fesm2020/lodash-walk-object.mjs +360 -0
- package/client/fesm2020/lodash-walk-object.mjs.map +1 -0
- package/client/{index.d.ts → lib/index.d.ts} +0 -0
- package/client/{models.d.ts → lib/models.d.ts} +0 -0
- package/client/lodash-walk-object.d.ts +5 -0
- package/client/package.json +25 -23
- package/client/public-api.d.ts +1 -0
- package/index.d.ts +1 -27
- package/index.js +3 -341
- package/index.js.map +1 -1
- package/lib/index.d.ts +27 -0
- package/lib/index.js +378 -0
- package/lib/index.js.map +1 -0
- package/{models.d.ts → lib/models.d.ts} +0 -0
- package/{models.js → lib/models.js} +2 -1
- package/{browser → lib}/models.js.map +1 -1
- package/package.json +3 -3
- package/package.json_tnp.json +2 -1
- package/package.json_tnp.json5 +30 -0
- package/tmp-environment.json +78 -111
- package/browser/es5/index.js +0 -384
- package/browser/es5/models.js +0 -5
- package/browser/index.js.map +0 -1
- package/browser/models.js +0 -2
- package/client/es5/index.js +0 -384
- package/client/es5/models.js +0 -5
- package/client/index.js.map +0 -1
- package/client/models.js +0 -2
- package/client/models.js.map +0 -1
- package/models.js.map +0 -1
package/tmp-environment.json
CHANGED
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
"packageJSON": {
|
|
7
7
|
"tnp": {
|
|
8
8
|
"resources": [],
|
|
9
|
-
"type": "isomorphic-lib",
|
|
10
|
-
"version": "v2",
|
|
11
9
|
"overrided": {
|
|
12
10
|
"includeAsDev": "*",
|
|
13
11
|
"includeOnly": [
|
|
@@ -23,6 +21,11 @@
|
|
|
23
21
|
"obscure": false,
|
|
24
22
|
"ugly": false
|
|
25
23
|
},
|
|
24
|
+
"type": "isomorphic-lib",
|
|
25
|
+
"version": "v3",
|
|
26
|
+
"additionalNpmNames": [
|
|
27
|
+
"firedev-walk-object"
|
|
28
|
+
],
|
|
26
29
|
"license": "MIT",
|
|
27
30
|
"private": false,
|
|
28
31
|
"scripts": {
|
|
@@ -36,11 +39,12 @@
|
|
|
36
39
|
"ng2-rest",
|
|
37
40
|
"docs",
|
|
38
41
|
"documentation"
|
|
39
|
-
]
|
|
42
|
+
],
|
|
43
|
+
"workerPlugins": {}
|
|
40
44
|
},
|
|
41
45
|
"name": "lodash-walk-object",
|
|
42
46
|
"description": "Walk all properties deep in object with lodash help",
|
|
43
|
-
"version": "1.0.
|
|
47
|
+
"version": "1.0.41",
|
|
44
48
|
"scripts": {
|
|
45
49
|
"test": "mocha --require ts-node/register src/**/*.spec.ts",
|
|
46
50
|
"test:watch": "mocha --compilers ts-node/register src/**/*.spec.ts --watch"
|
|
@@ -59,37 +63,37 @@
|
|
|
59
63
|
"url": "https://github.com/darekf77/lodash-walk-object/issues"
|
|
60
64
|
},
|
|
61
65
|
"homepage": "https://github.com/darekf77/lodash-walk-object#readme",
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"typescript-class-helpers": "~1.0.49"
|
|
68
|
+
},
|
|
69
|
+
"license": "MIT",
|
|
70
|
+
"private": false,
|
|
71
|
+
"lastBuildTagHash": "e398589ffff2e16ddefbffacff31650595a1328e",
|
|
62
72
|
"devDependencies": {
|
|
63
|
-
"@angular-devkit/build-angular": "
|
|
64
|
-
"@angular
|
|
65
|
-
"@angular
|
|
66
|
-
"@angular/
|
|
67
|
-
"@angular/
|
|
68
|
-
"@angular/
|
|
69
|
-
"@angular/
|
|
70
|
-
"@angular/
|
|
71
|
-
"@angular/
|
|
72
|
-
"@angular/
|
|
73
|
-
"@angular/
|
|
74
|
-
"@angular/
|
|
75
|
-
"@angular/
|
|
76
|
-
"@angular/
|
|
77
|
-
"@angular/
|
|
78
|
-
"@angular/platform-browser-dynamic": "9.1.3",
|
|
79
|
-
"@angular/pwa": "0.900.0-rc.7",
|
|
80
|
-
"@angular/router": "9.1.3",
|
|
81
|
-
"@angular/service-worker": "9.1.3",
|
|
73
|
+
"@angular-devkit/build-angular": "~13.2.5",
|
|
74
|
+
"@angular/animations": "~13.2.0",
|
|
75
|
+
"@angular/cdk": "~13.2.4",
|
|
76
|
+
"@angular/cli": "~13.2.5",
|
|
77
|
+
"@angular/common": "~13.2.0",
|
|
78
|
+
"@angular/compiler": "~13.2.0",
|
|
79
|
+
"@angular/compiler-cli": "~13.2.0",
|
|
80
|
+
"@angular/core": "~13.2.0",
|
|
81
|
+
"@angular/forms": "~13.2.0",
|
|
82
|
+
"@angular/material": "~13.2.4",
|
|
83
|
+
"@angular/platform-browser": "~13.2.0",
|
|
84
|
+
"@angular/platform-browser-dynamic": "~13.2.0",
|
|
85
|
+
"@angular/pwa": "~13.2.5",
|
|
86
|
+
"@angular/router": "~13.2.0",
|
|
87
|
+
"@angular/service-worker": "~13.2.0",
|
|
82
88
|
"@mdi/js": "5.8.55",
|
|
83
|
-
"@
|
|
84
|
-
"@
|
|
85
|
-
"@
|
|
86
|
-
"@
|
|
87
|
-
"@
|
|
88
|
-
"@
|
|
89
|
-
"@
|
|
90
|
-
"@
|
|
91
|
-
"@ngx-translate/http-loader": "4.0.0",
|
|
92
|
-
"@swimlane/ngx-datatable": "16.0.2",
|
|
89
|
+
"@ngrx/component-store": "~13.0.2",
|
|
90
|
+
"@ngrx/data": "~13.0.2",
|
|
91
|
+
"@ngrx/effects": "~13.0.2",
|
|
92
|
+
"@ngrx/entity": "~13.0.2",
|
|
93
|
+
"@ngrx/router-store": "~13.0.2",
|
|
94
|
+
"@ngrx/schematics": "~13.0.2",
|
|
95
|
+
"@ngrx/store": "~13.0.2",
|
|
96
|
+
"@ngrx/store-devtools": "~13.0.2",
|
|
93
97
|
"@types/chai": "4.1.2",
|
|
94
98
|
"@types/chokidar": "2.1.3",
|
|
95
99
|
"@types/dateformat": "1.0.1",
|
|
@@ -101,8 +105,7 @@
|
|
|
101
105
|
"@types/http-proxy": "1.16.0",
|
|
102
106
|
"@types/http-proxy-middleware": "0.19.2",
|
|
103
107
|
"@types/inquirer": "7.3.1",
|
|
104
|
-
"@types/jasmine": "3.
|
|
105
|
-
"@types/jasminewd2": "2.0.3",
|
|
108
|
+
"@types/jasmine": "3.10.0",
|
|
106
109
|
"@types/json-stringify-safe": "5.0.0",
|
|
107
110
|
"@types/json5": "0.0.29",
|
|
108
111
|
"@types/lockfile": "1.0.0",
|
|
@@ -114,23 +117,19 @@
|
|
|
114
117
|
"@types/oauth2orize": "1.8.0",
|
|
115
118
|
"@types/password-hash": "1.2.19",
|
|
116
119
|
"@types/progress": "2.0.3",
|
|
117
|
-
"@types/q": "1.
|
|
120
|
+
"@types/q": "1.5.5",
|
|
118
121
|
"@types/rimraf": "2.0.2",
|
|
119
122
|
"@types/systeminformation": "3.23.0",
|
|
120
123
|
"@types/vinyl": "2.0.2",
|
|
121
124
|
"@types/watch": "1.0.0",
|
|
122
125
|
"accepts": "1.3.4",
|
|
123
|
-
"angular-tree-component": "7.0.0",
|
|
124
126
|
"axios": "0.17.1",
|
|
125
|
-
"
|
|
126
|
-
"babel-preset-env": "1.7.0",
|
|
127
|
-
"background-worker-process": "~0.0.34",
|
|
127
|
+
"background-worker-process": "~0.0.35",
|
|
128
128
|
"bcryptjs": "2.4.3",
|
|
129
129
|
"body-parser": "1.18.2",
|
|
130
|
-
"bootstrap": "
|
|
131
|
-
"bs4-breakpoint": "~2.0.
|
|
130
|
+
"bootstrap": "5.1.3",
|
|
131
|
+
"bs4-breakpoint": "~2.0.42",
|
|
132
132
|
"buffer-shims": "1.0.0",
|
|
133
|
-
"button-dropdown": "~1.0.44",
|
|
134
133
|
"callsite-record": "4.1.3",
|
|
135
134
|
"chai": "4.2.0",
|
|
136
135
|
"chalk": "2.3.2",
|
|
@@ -138,14 +137,12 @@
|
|
|
138
137
|
"cheerio": "1.0.0-rc.3",
|
|
139
138
|
"chokidar": "3.5.1",
|
|
140
139
|
"circular-json": "0.5.1",
|
|
141
|
-
"codelyzer": "5.1.2",
|
|
142
140
|
"command-exists": "1.2.2",
|
|
143
141
|
"compression": "1.7.4",
|
|
144
142
|
"concurrently": "3.5.1",
|
|
145
143
|
"content-type": "1.0.4",
|
|
146
144
|
"cookie-parser": "1.4.3",
|
|
147
145
|
"copy-paste": "1.3.0",
|
|
148
|
-
"core-js-compat": "3.4.0",
|
|
149
146
|
"cors": "2.8.4",
|
|
150
147
|
"cpr": "3.0.1",
|
|
151
148
|
"cross-spawn": "7.0.3",
|
|
@@ -170,60 +167,45 @@
|
|
|
170
167
|
"fuzzy": "0.1.3",
|
|
171
168
|
"glob": "7.1.2",
|
|
172
169
|
"gulp": "3.9.1",
|
|
173
|
-
"hammerjs": "2.0.8",
|
|
174
170
|
"hostile": "1.3.3",
|
|
175
|
-
"html-webpack-plugin": "4.3.0",
|
|
176
171
|
"http-proxy": "1.16.2",
|
|
177
172
|
"http-proxy-middleware": "0.19.1",
|
|
178
173
|
"http-server": "0.11.1",
|
|
179
|
-
"incremental-compiler": "~1.1.
|
|
174
|
+
"incremental-compiler": "~1.1.53",
|
|
180
175
|
"inquirer": "7.3.3",
|
|
181
176
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
182
177
|
"is-elevated": "3.0.0",
|
|
183
178
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
184
|
-
"jasmine-core": "
|
|
185
|
-
"jasmine-spec-reporter": "4.2.1",
|
|
179
|
+
"jasmine-core": "4.0.0",
|
|
186
180
|
"json-stringify-safe": "5.0.1",
|
|
187
|
-
"json10": "~1.0.
|
|
181
|
+
"json10": "~1.0.38",
|
|
188
182
|
"json5": "2.1.3",
|
|
189
183
|
"json5-writer": "0.2.0",
|
|
190
|
-
"karma": "
|
|
184
|
+
"karma": "6.3.0",
|
|
191
185
|
"karma-chrome-launcher": "3.1.0",
|
|
192
186
|
"karma-cli": "1.0.1",
|
|
193
|
-
"karma-coverage
|
|
194
|
-
"karma-jasmine": "
|
|
195
|
-
"karma-jasmine-html-reporter": "1.
|
|
187
|
+
"karma-coverage": "2.1.0",
|
|
188
|
+
"karma-jasmine": "4.0.0",
|
|
189
|
+
"karma-jasmine-html-reporter": "1.7.0",
|
|
196
190
|
"lnk": "1.0.1",
|
|
197
191
|
"lockfile": "1.0.4",
|
|
198
192
|
"lodash": "4.17.4",
|
|
199
|
-
"lodash-walk-object": "~1.0.
|
|
193
|
+
"lodash-walk-object": "~1.0.39",
|
|
200
194
|
"lowdb": "1.0.0",
|
|
201
|
-
"magic-renamer": "~0.0.
|
|
195
|
+
"magic-renamer": "~0.0.20",
|
|
202
196
|
"material-design-icons": "3.0.1",
|
|
203
197
|
"method-override": "2.3.10",
|
|
204
198
|
"minimist": "1.2.0",
|
|
205
199
|
"mkdirp": "0.5.1",
|
|
206
200
|
"mocha": "5.2.0",
|
|
207
201
|
"moment": "2.22.2",
|
|
208
|
-
"morphi": "~4.0.
|
|
209
|
-
"ng-
|
|
210
|
-
"ng-
|
|
211
|
-
"
|
|
212
|
-
"ng2-
|
|
213
|
-
"ng2-logger": "~8.0.20",
|
|
214
|
-
"ng2-rest": "~11.0.41",
|
|
215
|
-
"ng4-icons": "~0.0.29",
|
|
216
|
-
"ng4-modal": "~0.0.29",
|
|
217
|
-
"ngx-bootstrap": "5.2.0",
|
|
218
|
-
"ngx-breadcrumbs": "0.0.3",
|
|
219
|
-
"ngx-editor": "4.1.0",
|
|
220
|
-
"ngx-moment": "3.5.0",
|
|
221
|
-
"ngx-pipes": "2.6.0",
|
|
222
|
-
"ngx-store": "2.1.0",
|
|
223
|
-
"ngx-toastr": "11.2.1",
|
|
224
|
-
"ngx-wig": "8.0.0",
|
|
202
|
+
"morphi": "~4.0.54",
|
|
203
|
+
"ng-packagr": "13.0.0",
|
|
204
|
+
"ng-talkback": "~2.4.25",
|
|
205
|
+
"ng2-logger": "~8.0.30",
|
|
206
|
+
"ng2-rest": "~11.0.42",
|
|
225
207
|
"node-cli-test": "0.0.2",
|
|
226
|
-
"node-cli-tester": "~0.0.
|
|
208
|
+
"node-cli-tester": "~0.0.22",
|
|
227
209
|
"node-localstorage": "2.1.6",
|
|
228
210
|
"node-notifier": "6.0.0",
|
|
229
211
|
"nodemon": "1.14.11",
|
|
@@ -236,64 +218,49 @@
|
|
|
236
218
|
"passport-http-bearer": "1.0.1",
|
|
237
219
|
"password-hash": "1.2.2",
|
|
238
220
|
"portfinder": "1.0.21",
|
|
239
|
-
"prettier": "2.3.2",
|
|
240
221
|
"progress": "2.0.3",
|
|
241
222
|
"prompts": "0.1.8",
|
|
242
|
-
"protractor": "5.4.3",
|
|
243
223
|
"ps-list": "6.1.0",
|
|
244
224
|
"ps-node": "0.1.6",
|
|
245
225
|
"q": "1.5.1",
|
|
246
226
|
"randomcolor": "0.5.3",
|
|
247
|
-
"record-replay-req-res-scenario": "~0.0.
|
|
227
|
+
"record-replay-req-res-scenario": "~0.0.26",
|
|
248
228
|
"reflect-metadata": "0.1.10",
|
|
249
229
|
"rimraf": "2.6.2",
|
|
250
|
-
"rxjs": "
|
|
251
|
-
"rxjs-compat": "6.5.3",
|
|
230
|
+
"rxjs": "~7.5.0",
|
|
252
231
|
"simple-git": "1.96.0",
|
|
253
232
|
"sloc": "0.2.0",
|
|
254
233
|
"socket.io": "2.4.1",
|
|
255
234
|
"sort-package-json": "1.11.0",
|
|
256
|
-
"static-columns": "~2.0.12",
|
|
257
235
|
"string-similarity": "4.0.2",
|
|
258
236
|
"sudo-block": "3.0.0",
|
|
259
237
|
"systeminformation": "3.45.7",
|
|
260
238
|
"task.js": "0.1.5",
|
|
261
|
-
"tnp-cli": "~2.0.
|
|
262
|
-
"tnp-config": "~1.0.
|
|
263
|
-
"tnp-core": "~1.0.
|
|
264
|
-
"tnp-db": "~0.0.
|
|
265
|
-
"tnp-helpers": "~0.0.
|
|
266
|
-
"tnp-models": "~0.0.
|
|
267
|
-
"tnp-tools": "~0.0.
|
|
268
|
-
"tnp-ui": "~0.0.
|
|
269
|
-
"ts-
|
|
270
|
-
"
|
|
271
|
-
"tsickle": "0.26.0",
|
|
272
|
-
"tslib": "2.2.0",
|
|
273
|
-
"tslint": "6.1.0",
|
|
239
|
+
"tnp-cli": "~2.0.27",
|
|
240
|
+
"tnp-config": "~1.0.30",
|
|
241
|
+
"tnp-core": "~1.0.59",
|
|
242
|
+
"tnp-db": "~0.0.44",
|
|
243
|
+
"tnp-helpers": "~0.0.73",
|
|
244
|
+
"tnp-models": "~0.0.37",
|
|
245
|
+
"tnp-tools": "~0.0.46",
|
|
246
|
+
"tnp-ui": "~0.0.33",
|
|
247
|
+
"ts-node": "10.7.0",
|
|
248
|
+
"tslib": "~2.3.0",
|
|
274
249
|
"typeorm": "~0.2.7",
|
|
275
|
-
"typescript": "4.
|
|
276
|
-
"typescript-formatter": "7.2.2",
|
|
277
|
-
"uglifyjs-webpack-plugin": "2.2.0",
|
|
250
|
+
"typescript": "~4.5.2",
|
|
251
|
+
"typescript-formatter": "~7.2.2",
|
|
278
252
|
"underscore": "1.9.1",
|
|
279
253
|
"uuid": "8.3.2",
|
|
280
254
|
"validator": "9.2.0",
|
|
281
|
-
"vpn-split": "~0.0.
|
|
255
|
+
"vpn-split": "~0.0.18",
|
|
282
256
|
"watch": "1.0.2",
|
|
283
|
-
"
|
|
284
|
-
|
|
285
|
-
},
|
|
286
|
-
"dependencies": {
|
|
287
|
-
"typescript-class-helpers": "~1.0.42"
|
|
288
|
-
},
|
|
289
|
-
"license": "MIT",
|
|
290
|
-
"private": false,
|
|
291
|
-
"lastBuildTagHash": "50f6c8c7d3fb3057f96f0d8406482c133213ffa0"
|
|
257
|
+
"zone.js": "~0.11.4"
|
|
258
|
+
}
|
|
292
259
|
},
|
|
293
260
|
"build": {
|
|
294
|
-
"number":
|
|
295
|
-
"date": "
|
|
296
|
-
"hash": "
|
|
261
|
+
"number": 151,
|
|
262
|
+
"date": "2022-03-07T01:18:40.000Z",
|
|
263
|
+
"hash": "ee6aa17a6d0dc3a1eca03355b4366ebf9d3fbf1f",
|
|
297
264
|
"options": {}
|
|
298
265
|
},
|
|
299
266
|
"currentProjectName": "lodash-walk-object",
|
|
@@ -301,7 +268,7 @@
|
|
|
301
268
|
"currentProjectLaunchConfiguration": "{\"version\":\"0.2.0\",\"configurations\":[{\"type\":\"node\",\"request\":\"launch\",\"name\":\"Launch Server standalone\",\"program\":\"${workspaceFolder}/run.js\",\"args\":[\"--ENVoverride=%7B%0A%20%20%20%20%22clientProjectName%22%3A%20%22lodash-walk-object%22%0A%7D\"],\"runtimeArgs\":[\"--nolazy\",\"-r\",\"ts-node/register\",\"--experimental-worker\"]},{\"name\":\"Debugger with ng serve\",\"type\":\"chrome\",\"request\":\"launch\",\"preLaunchTask\":\"Ng Serve\",\"postDebugTask\":\"terminateall\",\"sourceMaps\":true,\"webRoot\":\"${workspaceFolder}\",\"sourceMapPathOverrides\":{\"webpack:/*\":\"${webRoot}/*\",\"/./*\":\"${webRoot}/*\",\"/tmp-src/*\":\"${webRoot}/*\",\"/*\":\"*\",\"/./~/*\":\"${webRoot}/node_modules/*\"}},{\"type\":\"node\",\"request\":\"attach\",\"name\":\"Attach to global cli tool\",\"port\":9229,\"skipFiles\":[\"<node_internals>/**\"]}],\"compounds\":[{\"name\":\"Debug backend/frontend\",\"configurations\":[\"Launch Server standalone\",\"Debugger with ng serve\"]}]}",
|
|
302
269
|
"currentProjectTasksConfiguration": "{\"version\":\"2.0.0\",\"tasks\":[{\"label\":\"terminateall\",\"command\":\"echo ${input:terminate}\",\"type\":\"shell\",\"problemMatcher\":[]},{\"label\":\"Ng Serve\",\"type\":\"shell\",\"command\":\"tnp build\",\"isBackground\":true,\"presentation\":{\"reveal\":\"always\"},\"group\":{\"kind\":\"build\",\"isDefault\":true},\"problemMatcher\":{\"owner\":\"typescript\",\"source\":\"ts\",\"applyTo\":\"closedDocuments\",\"fileLocation\":[\"relative\",\"${cwd}\"],\"pattern\":\"$tsc\",\"background\":{\"activeOnStart\":true,\"beginsPattern\":{\"regexp\":\"(.*?)\"},\"endsPattern\":{\"regexp\":\"Compiled |Failed to compile.\"}}}}],\"inputs\":[{\"id\":\"terminate\",\"type\":\"command\",\"command\":\"workbench.action.tasks.terminate\",\"args\":\"terminateAll\"}]}",
|
|
303
270
|
"currentProjectType": "isomorphic-lib",
|
|
304
|
-
"currentFrameworkVersion": "0.0.
|
|
271
|
+
"currentFrameworkVersion": "0.0.159",
|
|
305
272
|
"currentProjectIsStrictSite": false,
|
|
306
273
|
"currentProjectIsDependencySite": false,
|
|
307
274
|
"currentProjectIsStatic": false,
|