lodash-walk-object 1.0.35 → 1.0.36
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 +35 -0
- package/tmp-environment.json +69 -106
- 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,8 @@
|
|
|
23
21
|
"obscure": false,
|
|
24
22
|
"ugly": false
|
|
25
23
|
},
|
|
24
|
+
"type": "isomorphic-lib",
|
|
25
|
+
"version": "v3",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"private": false,
|
|
28
28
|
"scripts": {
|
|
@@ -36,11 +36,12 @@
|
|
|
36
36
|
"ng2-rest",
|
|
37
37
|
"docs",
|
|
38
38
|
"documentation"
|
|
39
|
-
]
|
|
39
|
+
],
|
|
40
|
+
"workerPlugins": {}
|
|
40
41
|
},
|
|
41
42
|
"name": "lodash-walk-object",
|
|
42
43
|
"description": "Walk all properties deep in object with lodash help",
|
|
43
|
-
"version": "1.0.
|
|
44
|
+
"version": "1.0.36",
|
|
44
45
|
"scripts": {
|
|
45
46
|
"test": "mocha --require ts-node/register src/**/*.spec.ts",
|
|
46
47
|
"test:watch": "mocha --compilers ts-node/register src/**/*.spec.ts --watch"
|
|
@@ -60,36 +61,30 @@
|
|
|
60
61
|
},
|
|
61
62
|
"homepage": "https://github.com/darekf77/lodash-walk-object#readme",
|
|
62
63
|
"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",
|
|
64
|
+
"@angular-devkit/build-angular": "~13.2.5",
|
|
65
|
+
"@angular/animations": "~13.2.0",
|
|
66
|
+
"@angular/cdk": "~13.2.4",
|
|
67
|
+
"@angular/cli": "~13.2.5",
|
|
68
|
+
"@angular/common": "~13.2.0",
|
|
69
|
+
"@angular/compiler": "~13.2.0",
|
|
70
|
+
"@angular/compiler-cli": "~13.2.0",
|
|
71
|
+
"@angular/core": "~13.2.0",
|
|
72
|
+
"@angular/forms": "~13.2.0",
|
|
73
|
+
"@angular/material": "~13.2.4",
|
|
74
|
+
"@angular/platform-browser": "~13.2.0",
|
|
75
|
+
"@angular/platform-browser-dynamic": "~13.2.0",
|
|
76
|
+
"@angular/pwa": "~13.2.5",
|
|
77
|
+
"@angular/router": "~13.2.0",
|
|
78
|
+
"@angular/service-worker": "~13.2.0",
|
|
82
79
|
"@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",
|
|
80
|
+
"@ngrx/component-store": "~13.0.2",
|
|
81
|
+
"@ngrx/data": "~13.0.2",
|
|
82
|
+
"@ngrx/effects": "~13.0.2",
|
|
83
|
+
"@ngrx/entity": "~13.0.2",
|
|
84
|
+
"@ngrx/router-store": "~13.0.2",
|
|
85
|
+
"@ngrx/schematics": "~13.0.2",
|
|
86
|
+
"@ngrx/store": "~13.0.2",
|
|
87
|
+
"@ngrx/store-devtools": "~13.0.2",
|
|
93
88
|
"@types/chai": "4.1.2",
|
|
94
89
|
"@types/chokidar": "2.1.3",
|
|
95
90
|
"@types/dateformat": "1.0.1",
|
|
@@ -101,8 +96,7 @@
|
|
|
101
96
|
"@types/http-proxy": "1.16.0",
|
|
102
97
|
"@types/http-proxy-middleware": "0.19.2",
|
|
103
98
|
"@types/inquirer": "7.3.1",
|
|
104
|
-
"@types/jasmine": "3.
|
|
105
|
-
"@types/jasminewd2": "2.0.3",
|
|
99
|
+
"@types/jasmine": "3.10.0",
|
|
106
100
|
"@types/json-stringify-safe": "5.0.0",
|
|
107
101
|
"@types/json5": "0.0.29",
|
|
108
102
|
"@types/lockfile": "1.0.0",
|
|
@@ -114,23 +108,19 @@
|
|
|
114
108
|
"@types/oauth2orize": "1.8.0",
|
|
115
109
|
"@types/password-hash": "1.2.19",
|
|
116
110
|
"@types/progress": "2.0.3",
|
|
117
|
-
"@types/q": "1.
|
|
111
|
+
"@types/q": "1.5.5",
|
|
118
112
|
"@types/rimraf": "2.0.2",
|
|
119
113
|
"@types/systeminformation": "3.23.0",
|
|
120
114
|
"@types/vinyl": "2.0.2",
|
|
121
115
|
"@types/watch": "1.0.0",
|
|
122
116
|
"accepts": "1.3.4",
|
|
123
|
-
"angular-tree-component": "7.0.0",
|
|
124
117
|
"axios": "0.17.1",
|
|
125
|
-
"
|
|
126
|
-
"babel-preset-env": "1.7.0",
|
|
127
|
-
"background-worker-process": "~0.0.34",
|
|
118
|
+
"background-worker-process": "~0.0.35",
|
|
128
119
|
"bcryptjs": "2.4.3",
|
|
129
120
|
"body-parser": "1.18.2",
|
|
130
|
-
"bootstrap": "
|
|
131
|
-
"bs4-breakpoint": "~2.0.
|
|
121
|
+
"bootstrap": "5.1.3",
|
|
122
|
+
"bs4-breakpoint": "~2.0.43",
|
|
132
123
|
"buffer-shims": "1.0.0",
|
|
133
|
-
"button-dropdown": "~1.0.44",
|
|
134
124
|
"callsite-record": "4.1.3",
|
|
135
125
|
"chai": "4.2.0",
|
|
136
126
|
"chalk": "2.3.2",
|
|
@@ -138,14 +128,12 @@
|
|
|
138
128
|
"cheerio": "1.0.0-rc.3",
|
|
139
129
|
"chokidar": "3.5.1",
|
|
140
130
|
"circular-json": "0.5.1",
|
|
141
|
-
"codelyzer": "5.1.2",
|
|
142
131
|
"command-exists": "1.2.2",
|
|
143
132
|
"compression": "1.7.4",
|
|
144
133
|
"concurrently": "3.5.1",
|
|
145
134
|
"content-type": "1.0.4",
|
|
146
135
|
"cookie-parser": "1.4.3",
|
|
147
136
|
"copy-paste": "1.3.0",
|
|
148
|
-
"core-js-compat": "3.4.0",
|
|
149
137
|
"cors": "2.8.4",
|
|
150
138
|
"cpr": "3.0.1",
|
|
151
139
|
"cross-spawn": "7.0.3",
|
|
@@ -170,60 +158,45 @@
|
|
|
170
158
|
"fuzzy": "0.1.3",
|
|
171
159
|
"glob": "7.1.2",
|
|
172
160
|
"gulp": "3.9.1",
|
|
173
|
-
"hammerjs": "2.0.8",
|
|
174
161
|
"hostile": "1.3.3",
|
|
175
|
-
"html-webpack-plugin": "4.3.0",
|
|
176
162
|
"http-proxy": "1.16.2",
|
|
177
163
|
"http-proxy-middleware": "0.19.1",
|
|
178
164
|
"http-server": "0.11.1",
|
|
179
|
-
"incremental-compiler": "~1.1.
|
|
165
|
+
"incremental-compiler": "~1.1.53",
|
|
180
166
|
"inquirer": "7.3.3",
|
|
181
167
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
182
168
|
"is-elevated": "3.0.0",
|
|
183
169
|
"istanbul-instrumenter-loader": "2.0.0",
|
|
184
|
-
"jasmine-core": "
|
|
185
|
-
"jasmine-spec-reporter": "4.2.1",
|
|
170
|
+
"jasmine-core": "4.0.0",
|
|
186
171
|
"json-stringify-safe": "5.0.1",
|
|
187
|
-
"json10": "~1.0.
|
|
172
|
+
"json10": "~1.0.34",
|
|
188
173
|
"json5": "2.1.3",
|
|
189
174
|
"json5-writer": "0.2.0",
|
|
190
|
-
"karma": "
|
|
175
|
+
"karma": "6.3.0",
|
|
191
176
|
"karma-chrome-launcher": "3.1.0",
|
|
192
177
|
"karma-cli": "1.0.1",
|
|
193
|
-
"karma-coverage
|
|
194
|
-
"karma-jasmine": "
|
|
195
|
-
"karma-jasmine-html-reporter": "1.
|
|
178
|
+
"karma-coverage": "2.1.0",
|
|
179
|
+
"karma-jasmine": "4.0.0",
|
|
180
|
+
"karma-jasmine-html-reporter": "1.7.0",
|
|
196
181
|
"lnk": "1.0.1",
|
|
197
182
|
"lockfile": "1.0.4",
|
|
198
183
|
"lodash": "4.17.4",
|
|
199
|
-
"lodash-walk-object": "~1.0.
|
|
184
|
+
"lodash-walk-object": "~1.0.35",
|
|
200
185
|
"lowdb": "1.0.0",
|
|
201
|
-
"magic-renamer": "~0.0.
|
|
186
|
+
"magic-renamer": "~0.0.20",
|
|
202
187
|
"material-design-icons": "3.0.1",
|
|
203
188
|
"method-override": "2.3.10",
|
|
204
189
|
"minimist": "1.2.0",
|
|
205
190
|
"mkdirp": "0.5.1",
|
|
206
191
|
"mocha": "5.2.0",
|
|
207
192
|
"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",
|
|
193
|
+
"morphi": "~4.0.54",
|
|
194
|
+
"ng-packagr": "13.0.0",
|
|
195
|
+
"ng-talkback": "~2.4.25",
|
|
196
|
+
"ng2-logger": "~8.0.26",
|
|
197
|
+
"ng2-rest": "~11.0.42",
|
|
225
198
|
"node-cli-test": "0.0.2",
|
|
226
|
-
"node-cli-tester": "~0.0.
|
|
199
|
+
"node-cli-tester": "~0.0.22",
|
|
227
200
|
"node-localstorage": "2.1.6",
|
|
228
201
|
"node-notifier": "6.0.0",
|
|
229
202
|
"nodemon": "1.14.11",
|
|
@@ -236,64 +209,54 @@
|
|
|
236
209
|
"passport-http-bearer": "1.0.1",
|
|
237
210
|
"password-hash": "1.2.2",
|
|
238
211
|
"portfinder": "1.0.21",
|
|
239
|
-
"prettier": "2.3.2",
|
|
240
212
|
"progress": "2.0.3",
|
|
241
213
|
"prompts": "0.1.8",
|
|
242
|
-
"protractor": "5.4.3",
|
|
243
214
|
"ps-list": "6.1.0",
|
|
244
215
|
"ps-node": "0.1.6",
|
|
245
216
|
"q": "1.5.1",
|
|
246
217
|
"randomcolor": "0.5.3",
|
|
247
|
-
"record-replay-req-res-scenario": "~0.0.
|
|
218
|
+
"record-replay-req-res-scenario": "~0.0.26",
|
|
248
219
|
"reflect-metadata": "0.1.10",
|
|
249
220
|
"rimraf": "2.6.2",
|
|
250
|
-
"rxjs": "
|
|
251
|
-
"rxjs-compat": "6.5.3",
|
|
221
|
+
"rxjs": "~7.5.0",
|
|
252
222
|
"simple-git": "1.96.0",
|
|
253
223
|
"sloc": "0.2.0",
|
|
254
224
|
"socket.io": "2.4.1",
|
|
255
225
|
"sort-package-json": "1.11.0",
|
|
256
|
-
"static-columns": "~2.0.12",
|
|
257
226
|
"string-similarity": "4.0.2",
|
|
258
227
|
"sudo-block": "3.0.0",
|
|
259
228
|
"systeminformation": "3.45.7",
|
|
260
229
|
"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
|
-
"
|
|
270
|
-
"ts-node": "8.3.0",
|
|
271
|
-
"tsickle": "0.26.0",
|
|
272
|
-
"tslib": "2.2.0",
|
|
273
|
-
"tslint": "6.1.0",
|
|
230
|
+
"tnp-cli": "~2.0.23",
|
|
231
|
+
"tnp-config": "~1.0.24",
|
|
232
|
+
"tnp-core": "~1.0.38",
|
|
233
|
+
"tnp-db": "~0.0.44",
|
|
234
|
+
"tnp-helpers": "~0.0.73",
|
|
235
|
+
"tnp-models": "~0.0.37",
|
|
236
|
+
"tnp-tools": "~0.0.46",
|
|
237
|
+
"tnp-ui": "~0.0.33",
|
|
238
|
+
"tslib": "~2.3.0",
|
|
274
239
|
"typeorm": "~0.2.7",
|
|
275
|
-
"typescript": "4.
|
|
276
|
-
"typescript-formatter": "7.2.2",
|
|
277
|
-
"uglifyjs-webpack-plugin": "2.2.0",
|
|
240
|
+
"typescript": "~4.5.2",
|
|
241
|
+
"typescript-formatter": "~7.2.2",
|
|
278
242
|
"underscore": "1.9.1",
|
|
279
243
|
"uuid": "8.3.2",
|
|
280
244
|
"validator": "9.2.0",
|
|
281
|
-
"vpn-split": "~0.0.
|
|
245
|
+
"vpn-split": "~0.0.18",
|
|
282
246
|
"watch": "1.0.2",
|
|
283
|
-
"
|
|
284
|
-
"zone.js": "0.10.2"
|
|
247
|
+
"zone.js": "~0.11.4"
|
|
285
248
|
},
|
|
286
249
|
"dependencies": {
|
|
287
|
-
"typescript-class-helpers": "~1.0.
|
|
250
|
+
"typescript-class-helpers": "~1.0.45"
|
|
288
251
|
},
|
|
289
252
|
"license": "MIT",
|
|
290
253
|
"private": false,
|
|
291
|
-
"lastBuildTagHash": "
|
|
254
|
+
"lastBuildTagHash": "e398589ffff2e16ddefbffacff31650595a1328e"
|
|
292
255
|
},
|
|
293
256
|
"build": {
|
|
294
|
-
"number":
|
|
295
|
-
"date": "
|
|
296
|
-
"hash": "
|
|
257
|
+
"number": 146,
|
|
258
|
+
"date": "2022-03-06T14:39:50.000Z",
|
|
259
|
+
"hash": "12d32efe1552ff526bd51714abb9fbaa7131ab9b",
|
|
297
260
|
"options": {}
|
|
298
261
|
},
|
|
299
262
|
"currentProjectName": "lodash-walk-object",
|
|
@@ -301,7 +264,7 @@
|
|
|
301
264
|
"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
265
|
"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
266
|
"currentProjectType": "isomorphic-lib",
|
|
304
|
-
"currentFrameworkVersion": "0.0.
|
|
267
|
+
"currentFrameworkVersion": "0.0.159",
|
|
305
268
|
"currentProjectIsStrictSite": false,
|
|
306
269
|
"currentProjectIsDependencySite": false,
|
|
307
270
|
"currentProjectIsStatic": false,
|