directus 9.12.2 → 9.13.0
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/dist/app.js +5 -1
- package/dist/auth/drivers/index.js +5 -1
- package/dist/auth/drivers/ldap.js +5 -1
- package/dist/auth/drivers/oauth2.js +15 -23
- package/dist/auth/drivers/openid.js +16 -24
- package/dist/cli/commands/bootstrap/index.js +5 -1
- package/dist/cli/commands/schema/apply.js +7 -3
- package/dist/cli/commands/schema/snapshot.d.ts +1 -1
- package/dist/cli/commands/schema/snapshot.js +33 -25
- package/dist/cli/index.js +1 -1
- package/dist/cli/utils/create-env/env-stub.liquid +11 -11
- package/dist/controllers/assets.js +5 -5
- package/dist/controllers/dashboards.js +4 -1
- package/dist/controllers/files.js +8 -5
- package/dist/controllers/flows.js +4 -1
- package/dist/controllers/folders.js +4 -1
- package/dist/controllers/items.js +4 -1
- package/dist/controllers/notifications.js +4 -1
- package/dist/controllers/operations.js +4 -1
- package/dist/controllers/panels.js +4 -1
- package/dist/controllers/permissions.js +4 -1
- package/dist/controllers/presets.js +4 -1
- package/dist/controllers/roles.js +4 -1
- package/dist/controllers/shares.js +4 -1
- package/dist/controllers/users.js +75 -3
- package/dist/controllers/utils.js +3 -3
- package/dist/database/helpers/date/dialects/sqlite.js +3 -0
- package/dist/database/helpers/index.js +5 -1
- package/dist/database/index.js +2 -0
- package/dist/database/migrations/20210225A-add-relations-sort-field.js +2 -2
- package/dist/database/migrations/20210506A-rename-interfaces.js +2 -2
- package/dist/database/migrations/20210802A-replace-groups.js +2 -2
- package/dist/database/migrations/20210805A-update-groups.js +2 -2
- package/dist/database/migrations/20210805B-change-image-metadata-structure.js +3 -3
- package/dist/database/migrations/20211007A-update-presets.js +5 -5
- package/dist/database/migrations/20220429A-add-flows.js +1 -2
- package/dist/database/migrations/20220614A-rename-hook-trigger-to-event.d.ts +3 -0
- package/dist/database/migrations/20220614A-rename-hook-trigger-to-event.js +11 -0
- package/dist/database/system-data/fields/dashboards.yaml +1 -0
- package/dist/env.d.ts +1 -1
- package/dist/env.js +8 -3
- package/dist/exceptions/database/translate.js +5 -1
- package/dist/exceptions/index.js +5 -1
- package/dist/extensions.js +5 -1
- package/dist/flows.js +15 -11
- package/dist/index.js +5 -1
- package/dist/logger.js +5 -1
- package/dist/messenger.js +2 -2
- package/dist/middleware/graphql.js +2 -2
- package/dist/middleware/respond.js +10 -1
- package/dist/middleware/validate-batch.js +3 -1
- package/dist/operations/item-create/index.js +1 -2
- package/dist/operations/item-delete/index.d.ts +1 -0
- package/dist/operations/item-delete/index.js +8 -7
- package/dist/operations/item-read/index.js +7 -6
- package/dist/operations/item-update/index.d.ts +1 -0
- package/dist/operations/item-update/index.js +9 -8
- package/dist/operations/log/index.js +1 -2
- package/dist/operations/notification/index.js +1 -2
- package/dist/operations/transform/index.js +1 -2
- package/dist/operations/trigger/index.js +1 -2
- package/dist/server.js +5 -1
- package/dist/services/assets.js +5 -1
- package/dist/services/collections.js +5 -1
- package/dist/services/fields.d.ts +3 -3
- package/dist/services/fields.js +25 -17
- package/dist/services/files.js +5 -1
- package/dist/services/flows.d.ts +1 -0
- package/dist/services/flows.js +6 -0
- package/dist/services/{graphql.d.ts → graphql/index.d.ts} +3 -5
- package/dist/services/{graphql.js → graphql/index.js} +109 -101
- package/dist/services/graphql/types/date.d.ts +2 -0
- package/dist/services/graphql/types/date.js +9 -0
- package/dist/services/graphql/types/geojson.d.ts +2 -0
- package/dist/services/graphql/types/geojson.js +10 -0
- package/dist/services/graphql/types/string-or-float.d.ts +5 -0
- package/dist/services/graphql/types/string-or-float.js +34 -0
- package/dist/services/graphql/types/void.d.ts +2 -0
- package/dist/services/graphql/types/void.js +17 -0
- package/dist/services/graphql/utils/add-path-to-validation-error.d.ts +2 -0
- package/dist/services/graphql/utils/add-path-to-validation-error.js +20 -0
- package/dist/services/import-export.js +6 -7
- package/dist/services/index.js +5 -1
- package/dist/services/items.d.ts +5 -1
- package/dist/services/items.js +22 -2
- package/dist/services/mail/index.js +8 -6
- package/dist/services/operations.d.ts +1 -0
- package/dist/services/operations.js +6 -0
- package/dist/services/payload.js +2 -3
- package/dist/services/permissions.d.ts +1 -0
- package/dist/services/permissions.js +5 -0
- package/dist/services/relations.js +5 -1
- package/dist/services/roles.d.ts +1 -0
- package/dist/services/roles.js +9 -0
- package/dist/services/server.js +5 -1
- package/dist/services/users.d.ts +1 -0
- package/dist/services/users.js +17 -0
- package/dist/types/index.js +5 -1
- package/dist/utils/apply-query.js +24 -15
- package/dist/utils/calculate-field-depth.d.ts +33 -0
- package/dist/utils/calculate-field-depth.js +75 -0
- package/dist/utils/get-default-value.js +3 -13
- package/dist/utils/get-graphql-type.js +4 -3
- package/dist/utils/get-local-type.d.ts +6 -3
- package/dist/utils/get-permissions.js +3 -4
- package/dist/utils/get-schema.js +1 -2
- package/dist/utils/get-string-byte-size.d.ts +4 -0
- package/dist/utils/get-string-byte-size.js +10 -0
- package/dist/utils/jwt.js +5 -1
- package/dist/utils/sanitize-query.js +4 -5
- package/dist/utils/validate-query.js +50 -0
- package/dist/webhooks.js +5 -1
- package/package.json +74 -73
- package/dist/utils/operation-options.d.ts +0 -3
- package/dist/utils/operation-options.js +0 -45
- package/dist/utils/parse-json.d.ts +0 -5
- package/dist/utils/parse-json.js +0 -19
package/dist/webhooks.js
CHANGED
|
@@ -11,13 +11,17 @@ const logger_1 = __importDefault(require("./logger"));
|
|
|
11
11
|
const services_1 = require("./services");
|
|
12
12
|
const get_schema_1 = require("./utils/get-schema");
|
|
13
13
|
const messenger_1 = require("./messenger");
|
|
14
|
+
const job_queue_1 = require("./utils/job-queue");
|
|
14
15
|
let registered = [];
|
|
16
|
+
const reloadQueue = new job_queue_1.JobQueue();
|
|
15
17
|
async function init() {
|
|
16
18
|
await register();
|
|
17
19
|
const messenger = (0, messenger_1.getMessenger)();
|
|
18
20
|
messenger.subscribe('webhooks', (event) => {
|
|
19
21
|
if (event.type === 'reload') {
|
|
20
|
-
|
|
22
|
+
reloadQueue.enqueue(async () => {
|
|
23
|
+
await reload();
|
|
24
|
+
});
|
|
21
25
|
}
|
|
22
26
|
});
|
|
23
27
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "directus",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.13.0",
|
|
4
4
|
"license": "GPL-3.0-only",
|
|
5
5
|
"homepage": "https://github.com/directus/directus#readme",
|
|
6
6
|
"description": "Directus is a real-time API and App dashboard for managing SQL database content.",
|
|
@@ -76,87 +76,88 @@
|
|
|
76
76
|
"README.md"
|
|
77
77
|
],
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@aws-sdk/client-ses": "^3.
|
|
80
|
-
"@directus/app": "9.
|
|
81
|
-
"@directus/drive": "9.
|
|
82
|
-
"@directus/drive-azure": "9.
|
|
83
|
-
"@directus/drive-gcs": "9.
|
|
84
|
-
"@directus/drive-s3": "9.
|
|
85
|
-
"@directus/extensions-sdk": "9.
|
|
86
|
-
"@directus/format-title": "9.
|
|
87
|
-
"@directus/schema": "9.
|
|
88
|
-
"@directus/shared": "9.
|
|
89
|
-
"@directus/specs": "9.
|
|
90
|
-
"@godaddy/terminus": "^4.
|
|
79
|
+
"@aws-sdk/client-ses": "^3.107.0",
|
|
80
|
+
"@directus/app": "9.13.0",
|
|
81
|
+
"@directus/drive": "9.13.0",
|
|
82
|
+
"@directus/drive-azure": "9.13.0",
|
|
83
|
+
"@directus/drive-gcs": "9.13.0",
|
|
84
|
+
"@directus/drive-s3": "9.13.0",
|
|
85
|
+
"@directus/extensions-sdk": "9.13.0",
|
|
86
|
+
"@directus/format-title": "9.13.0",
|
|
87
|
+
"@directus/schema": "9.13.0",
|
|
88
|
+
"@directus/shared": "9.13.0",
|
|
89
|
+
"@directus/specs": "9.13.0",
|
|
90
|
+
"@godaddy/terminus": "^4.10.2",
|
|
91
91
|
"@rollup/plugin-alias": "^3.1.9",
|
|
92
|
-
"@rollup/plugin-virtual": "^2.0
|
|
93
|
-
"argon2": "^0.28.
|
|
94
|
-
"async": "^3.2.
|
|
95
|
-
"async-mutex": "^0.3.
|
|
96
|
-
"axios": "^0.
|
|
97
|
-
"busboy": "^
|
|
92
|
+
"@rollup/plugin-virtual": "^2.1.0",
|
|
93
|
+
"argon2": "^0.28.5",
|
|
94
|
+
"async": "^3.2.4",
|
|
95
|
+
"async-mutex": "^0.3.2",
|
|
96
|
+
"axios": "^0.27.2",
|
|
97
|
+
"busboy": "^1.6.0",
|
|
98
|
+
"bytes": "^3.1.2",
|
|
98
99
|
"camelcase": "^6.2.0",
|
|
99
100
|
"chalk": "^4.1.1",
|
|
100
|
-
"chokidar": "^3.5.
|
|
101
|
+
"chokidar": "^3.5.3",
|
|
101
102
|
"commander": "^8.0.0",
|
|
102
|
-
"cookie-parser": "^1.4.
|
|
103
|
+
"cookie-parser": "^1.4.6",
|
|
103
104
|
"cors": "^2.8.5",
|
|
104
105
|
"csv-parser": "^3.0.0",
|
|
105
|
-
"date-fns": "^2.
|
|
106
|
+
"date-fns": "^2.28.0",
|
|
106
107
|
"deep-diff": "^1.0.2",
|
|
107
108
|
"deep-map": "^2.0.0",
|
|
108
|
-
"destroy": "^1.0
|
|
109
|
+
"destroy": "^1.2.0",
|
|
109
110
|
"dotenv": "^10.0.0",
|
|
110
|
-
"eventemitter2": "^6.4.
|
|
111
|
+
"eventemitter2": "^6.4.5",
|
|
111
112
|
"execa": "^5.1.1",
|
|
112
|
-
"exifr": "^7.1.
|
|
113
|
-
"express": "^4.
|
|
113
|
+
"exifr": "^7.1.3",
|
|
114
|
+
"express": "^4.18.1",
|
|
114
115
|
"fast-redact": "^3.1.1",
|
|
115
116
|
"flat": "^5.0.2",
|
|
116
|
-
"fs-extra": "^10.
|
|
117
|
+
"fs-extra": "^10.1.0",
|
|
117
118
|
"globby": "^11.0.4",
|
|
118
119
|
"graphql": "^15.5.0",
|
|
119
|
-
"graphql-compose": "^9.0.
|
|
120
|
+
"graphql-compose": "^9.0.8",
|
|
120
121
|
"helmet": "^4.6.0",
|
|
121
|
-
"inquirer": "^8.
|
|
122
|
+
"inquirer": "^8.2.4",
|
|
122
123
|
"ioredis": "^4.27.6",
|
|
123
|
-
"joi": "^17.
|
|
124
|
+
"joi": "^17.6.0",
|
|
124
125
|
"js-yaml": "^4.1.0",
|
|
125
|
-
"js2xmlparser": "^4.0.
|
|
126
|
-
"json2csv": "^5.0.
|
|
126
|
+
"js2xmlparser": "^4.0.2",
|
|
127
|
+
"json2csv": "^5.0.7",
|
|
127
128
|
"jsonwebtoken": "^8.5.1",
|
|
128
|
-
"keyv": "^4.0
|
|
129
|
-
"knex": "^2.
|
|
130
|
-
"knex-schema-inspector": "
|
|
131
|
-
"ldapjs": "^2.3.
|
|
132
|
-
"liquidjs": "^9.
|
|
129
|
+
"keyv": "^4.3.0",
|
|
130
|
+
"knex": "^2.1.0",
|
|
131
|
+
"knex-schema-inspector": "^2.0.1",
|
|
132
|
+
"ldapjs": "^2.3.3",
|
|
133
|
+
"liquidjs": "^9.37.0",
|
|
133
134
|
"lodash": "^4.17.21",
|
|
134
135
|
"macos-release": "^2.4.1",
|
|
135
|
-
"marked": "^4.0.
|
|
136
|
+
"marked": "^4.0.16",
|
|
136
137
|
"micromustache": "^8.0.3",
|
|
137
|
-
"mime-types": "^2.1.
|
|
138
|
+
"mime-types": "^2.1.35",
|
|
138
139
|
"ms": "^2.1.3",
|
|
139
140
|
"nanoid": "^3.1.23",
|
|
140
|
-
"node-cron": "^3.0.
|
|
141
|
+
"node-cron": "^3.0.1",
|
|
141
142
|
"node-machine-id": "^1.1.12",
|
|
142
|
-
"nodemailer": "^6.
|
|
143
|
+
"nodemailer": "^6.7.5",
|
|
143
144
|
"object-hash": "^2.2.0",
|
|
144
|
-
"openapi3-ts": "^2.0.
|
|
145
|
-
"openid-client": "^5.
|
|
145
|
+
"openapi3-ts": "^2.0.2",
|
|
146
|
+
"openid-client": "^5.1.6",
|
|
146
147
|
"ora": "^5.4.0",
|
|
147
148
|
"otplib": "^12.0.1",
|
|
148
149
|
"pino": "6.13.3",
|
|
149
|
-
"pino-colada": "^2.
|
|
150
|
+
"pino-colada": "^2.2.2",
|
|
150
151
|
"pino-http": "5.8.0",
|
|
151
|
-
"qs": "^6.
|
|
152
|
-
"rate-limiter-flexible": "^2.
|
|
152
|
+
"qs": "^6.10.5",
|
|
153
|
+
"rate-limiter-flexible": "^2.3.7",
|
|
153
154
|
"resolve-cwd": "^3.0.0",
|
|
154
|
-
"rollup": "^2.
|
|
155
|
-
"sanitize-html": "^2.
|
|
156
|
-
"sharp": "^0.30.
|
|
157
|
-
"stream-json": "^1.7.
|
|
155
|
+
"rollup": "^2.75.6",
|
|
156
|
+
"sanitize-html": "^2.7.0",
|
|
157
|
+
"sharp": "^0.30.6",
|
|
158
|
+
"stream-json": "^1.7.4",
|
|
158
159
|
"strip-bom-stream": "^4.0.0",
|
|
159
|
-
"supertest": "^6.
|
|
160
|
+
"supertest": "^6.2.3",
|
|
160
161
|
"tmp-promise": "^3.0.3",
|
|
161
162
|
"update-check": "^1.5.4",
|
|
162
163
|
"uuid": "^8.3.2",
|
|
@@ -164,21 +165,21 @@
|
|
|
164
165
|
"wellknown": "^0.5.0"
|
|
165
166
|
},
|
|
166
167
|
"optionalDependencies": {
|
|
167
|
-
"@keyv/redis": "^2.
|
|
168
|
+
"@keyv/redis": "^2.3.6",
|
|
168
169
|
"keyv-memcache": "^1.2.5",
|
|
169
170
|
"memcached": "^2.2.2",
|
|
170
171
|
"mysql": "^2.18.1",
|
|
171
|
-
"nodemailer-mailgun-transport": "^2.1.
|
|
172
|
-
"pg": "^8.
|
|
173
|
-
"sqlite3": "^5.0.
|
|
172
|
+
"nodemailer-mailgun-transport": "^2.1.4",
|
|
173
|
+
"pg": "^8.7.3",
|
|
174
|
+
"sqlite3": "^5.0.8",
|
|
174
175
|
"tedious": "^13.0.0"
|
|
175
176
|
},
|
|
176
|
-
"gitHead": "
|
|
177
|
+
"gitHead": "fd55233b1124a2887e04e4418f04c7a7b94398b7",
|
|
177
178
|
"devDependencies": {
|
|
178
|
-
"@types/async": "3.2.
|
|
179
|
+
"@types/async": "3.2.13",
|
|
179
180
|
"@types/body-parser": "1.19.2",
|
|
180
|
-
"@types/busboy": "
|
|
181
|
-
"@types/cookie-parser": "1.4.
|
|
181
|
+
"@types/busboy": "1.5.0",
|
|
182
|
+
"@types/cookie-parser": "1.4.3",
|
|
182
183
|
"@types/cors": "2.8.12",
|
|
183
184
|
"@types/deep-diff": "1.0.1",
|
|
184
185
|
"@types/destroy": "1.0.0",
|
|
@@ -188,16 +189,16 @@
|
|
|
188
189
|
"@types/fast-redact": "^3.0.1",
|
|
189
190
|
"@types/flat": "5.0.2",
|
|
190
191
|
"@types/fs-extra": "9.0.13",
|
|
191
|
-
"@types/inquirer": "8.1
|
|
192
|
+
"@types/inquirer": "8.2.1",
|
|
192
193
|
"@types/ioredis": "^4.28.10",
|
|
193
194
|
"@types/jest": "27.4.1",
|
|
194
195
|
"@types/js-yaml": "4.0.5",
|
|
195
196
|
"@types/json2csv": "5.0.3",
|
|
196
|
-
"@types/jsonwebtoken": "8.5.
|
|
197
|
-
"@types/keyv": "3.1.
|
|
197
|
+
"@types/jsonwebtoken": "8.5.8",
|
|
198
|
+
"@types/keyv": "3.1.4",
|
|
198
199
|
"@types/ldapjs": "2.2.2",
|
|
199
|
-
"@types/lodash": "4.14.
|
|
200
|
-
"@types/marked": "4.0.
|
|
200
|
+
"@types/lodash": "4.14.182",
|
|
201
|
+
"@types/marked": "4.0.3",
|
|
201
202
|
"@types/mime-types": "2.1.1",
|
|
202
203
|
"@types/ms": "0.7.31",
|
|
203
204
|
"@types/node": "16.11.9",
|
|
@@ -205,22 +206,22 @@
|
|
|
205
206
|
"@types/nodemailer": "6.4.4",
|
|
206
207
|
"@types/object-hash": "2.2.1",
|
|
207
208
|
"@types/pino": "6.3.12",
|
|
208
|
-
"@types/pino-http": "5.8.
|
|
209
|
+
"@types/pino-http": "5.8.1",
|
|
209
210
|
"@types/qs": "6.9.7",
|
|
210
|
-
"@types/sanitize-html": "2.
|
|
211
|
-
"@types/sharp": "0.
|
|
212
|
-
"@types/stream-json": "1.7.
|
|
213
|
-
"@types/supertest": "2.0.
|
|
214
|
-
"@types/uuid": "8.3.
|
|
211
|
+
"@types/sanitize-html": "2.6.2",
|
|
212
|
+
"@types/sharp": "0.30.4",
|
|
213
|
+
"@types/stream-json": "1.7.2",
|
|
214
|
+
"@types/supertest": "2.0.12",
|
|
215
|
+
"@types/uuid": "8.3.4",
|
|
215
216
|
"@types/uuid-validate": "0.0.1",
|
|
216
|
-
"@types/wellknown": "0.5.
|
|
217
|
+
"@types/wellknown": "0.5.3",
|
|
217
218
|
"copyfiles": "2.4.1",
|
|
218
219
|
"cross-env": "7.0.3",
|
|
219
220
|
"form-data": "^4.0.0",
|
|
220
221
|
"jest": "27.5.1",
|
|
221
|
-
"knex-mock-client": "1.
|
|
222
|
+
"knex-mock-client": "1.8.4",
|
|
222
223
|
"ts-jest": "27.1.3",
|
|
223
224
|
"ts-node-dev": "1.1.8",
|
|
224
|
-
"typescript": "4.
|
|
225
|
+
"typescript": "4.7.3"
|
|
225
226
|
}
|
|
226
227
|
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.optionToString = exports.optionToObject = exports.applyOperationOptions = void 0;
|
|
4
|
-
const micromustache_1 = require("micromustache");
|
|
5
|
-
const parse_json_1 = require("./parse-json");
|
|
6
|
-
function resolveFn(path, scope) {
|
|
7
|
-
if (!scope)
|
|
8
|
-
return undefined;
|
|
9
|
-
const value = (0, micromustache_1.get)(scope, path);
|
|
10
|
-
return typeof value === 'object' ? JSON.stringify(value) : value;
|
|
11
|
-
}
|
|
12
|
-
function renderMustache(item, scope) {
|
|
13
|
-
if (typeof item === 'string') {
|
|
14
|
-
return (0, micromustache_1.renderFn)(item, resolveFn, scope, { explicit: true });
|
|
15
|
-
}
|
|
16
|
-
else if (Array.isArray(item)) {
|
|
17
|
-
return item.map((element) => renderMustache(element, scope));
|
|
18
|
-
}
|
|
19
|
-
else if (typeof item === 'object' && item !== null) {
|
|
20
|
-
return Object.fromEntries(Object.entries(item).map(([key, value]) => [key, renderMustache(value, scope)]));
|
|
21
|
-
}
|
|
22
|
-
else {
|
|
23
|
-
return item;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
function applyOperationOptions(options, data) {
|
|
27
|
-
return Object.fromEntries(Object.entries(options).map(([key, value]) => {
|
|
28
|
-
if (typeof value === 'string') {
|
|
29
|
-
const single = value.match(/^\{\{\s*([^}\s]+)\s*\}\}$/);
|
|
30
|
-
if (single !== null) {
|
|
31
|
-
return [key, (0, micromustache_1.get)(data, single[1])];
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
return [key, renderMustache(value, data)];
|
|
35
|
-
}));
|
|
36
|
-
}
|
|
37
|
-
exports.applyOperationOptions = applyOperationOptions;
|
|
38
|
-
function optionToObject(option) {
|
|
39
|
-
return typeof option === 'string' ? (0, parse_json_1.parseJSON)(option) : option;
|
|
40
|
-
}
|
|
41
|
-
exports.optionToObject = optionToObject;
|
|
42
|
-
function optionToString(option) {
|
|
43
|
-
return typeof option === 'object' ? JSON.stringify(option) : String(option);
|
|
44
|
-
}
|
|
45
|
-
exports.optionToString = optionToString;
|
package/dist/utils/parse-json.js
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.noproto = exports.parseJSON = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* Run JSON.parse, but ignore `__proto__` properties. This prevents prototype pollution attacks
|
|
6
|
-
*/
|
|
7
|
-
function parseJSON(input) {
|
|
8
|
-
if (String(input).includes('__proto__')) {
|
|
9
|
-
return JSON.parse(input, noproto);
|
|
10
|
-
}
|
|
11
|
-
return JSON.parse(input);
|
|
12
|
-
}
|
|
13
|
-
exports.parseJSON = parseJSON;
|
|
14
|
-
function noproto(key, value) {
|
|
15
|
-
if (key !== '__proto__') {
|
|
16
|
-
return value;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
exports.noproto = noproto;
|