@corellium/corellium-cli 1.5.0 → 1.5.1
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/.nvmrc +1 -1
- package/node_modules/axios/node_modules/form-data/lib/form_data.js +24 -22
- package/node_modules/axios/node_modules/form-data/package.json +17 -14
- package/node_modules/call-bind-apply-helpers/.eslintrc +1 -0
- package/node_modules/call-bind-apply-helpers/CHANGELOG.md +7 -0
- package/node_modules/call-bind-apply-helpers/index.d.ts +38 -20
- package/node_modules/call-bind-apply-helpers/index.js +1 -1
- package/node_modules/call-bind-apply-helpers/package.json +8 -8
- package/node_modules/call-bind-apply-helpers/test/index.js +4 -4
- package/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- package/node_modules/es-set-tostringtag/LICENSE +21 -0
- package/node_modules/es-set-tostringtag/README.md +53 -0
- package/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/node_modules/es-set-tostringtag/index.js +35 -0
- package/node_modules/es-set-tostringtag/package.json +78 -0
- package/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- package/node_modules/form-data/lib/form_data.js +23 -21
- package/node_modules/form-data/package.json +16 -15
- package/node_modules/has-tostringtag/.eslintrc +5 -0
- package/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/node_modules/has-tostringtag/.nycrc +13 -0
- package/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- package/node_modules/has-tostringtag/LICENSE +21 -0
- package/node_modules/has-tostringtag/README.md +46 -0
- package/node_modules/has-tostringtag/index.d.ts +3 -0
- package/node_modules/has-tostringtag/index.js +8 -0
- package/node_modules/has-tostringtag/package.json +108 -0
- package/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/node_modules/has-tostringtag/shams.js +8 -0
- package/node_modules/has-tostringtag/test/index.js +21 -0
- package/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/node_modules/has-tostringtag/test/tests.js +15 -0
- package/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/node_modules/object-inspect/CHANGELOG.md +8 -0
- package/node_modules/object-inspect/index.js +10 -7
- package/node_modules/object-inspect/package.json +5 -4
- package/node_modules/object-inspect/test/values.js +50 -0
- package/node_modules/superagent/node_modules/semver/classes/semver.js +3 -2
- package/node_modules/superagent/node_modules/semver/internal/re.js +2 -0
- package/node_modules/superagent/node_modules/semver/package.json +1 -1
- package/package.json +1 -1
- package/output/e3e8277b426d4bc636a8ed30e66dd056e6cc9691-corellium-cli-build.tar.gz +0 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
var test = require('tape');
|
4
|
+
|
5
|
+
if (typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol') {
|
6
|
+
test('has native Symbol.toStringTag support', function (t) {
|
7
|
+
t.equal(typeof Symbol, 'function');
|
8
|
+
t.equal(typeof Symbol.toStringTag, 'symbol');
|
9
|
+
t.end();
|
10
|
+
});
|
11
|
+
// @ts-expect-error CJS has top-level return
|
12
|
+
return;
|
13
|
+
}
|
14
|
+
|
15
|
+
var hasSymbolToStringTag = require('../../shams');
|
16
|
+
|
17
|
+
test('polyfilled Symbols', function (t) {
|
18
|
+
/* eslint-disable global-require */
|
19
|
+
t.equal(hasSymbolToStringTag(), false, 'hasSymbolToStringTag is false before polyfilling');
|
20
|
+
// @ts-expect-error no types defined
|
21
|
+
require('core-js/fn/symbol');
|
22
|
+
// @ts-expect-error no types defined
|
23
|
+
require('core-js/fn/symbol/to-string-tag');
|
24
|
+
|
25
|
+
require('../tests')(t);
|
26
|
+
|
27
|
+
var hasToStringTagAfter = hasSymbolToStringTag();
|
28
|
+
t.equal(hasToStringTagAfter, true, 'hasSymbolToStringTag is true after polyfilling');
|
29
|
+
/* eslint-enable global-require */
|
30
|
+
t.end();
|
31
|
+
});
|
@@ -0,0 +1,30 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
var test = require('tape');
|
4
|
+
|
5
|
+
if (typeof Symbol === 'function' && typeof Symbol() === 'symbol') {
|
6
|
+
test('has native Symbol support', function (t) {
|
7
|
+
t.equal(typeof Symbol, 'function');
|
8
|
+
t.equal(typeof Symbol(), 'symbol');
|
9
|
+
t.end();
|
10
|
+
});
|
11
|
+
// @ts-expect-error CJS has top-level return
|
12
|
+
return;
|
13
|
+
}
|
14
|
+
|
15
|
+
var hasSymbolToStringTag = require('../../shams');
|
16
|
+
|
17
|
+
test('polyfilled Symbols', function (t) {
|
18
|
+
/* eslint-disable global-require */
|
19
|
+
t.equal(hasSymbolToStringTag(), false, 'hasSymbolToStringTag is false before polyfilling');
|
20
|
+
|
21
|
+
// @ts-expect-error no types defined
|
22
|
+
require('get-own-property-symbols');
|
23
|
+
|
24
|
+
require('../tests')(t);
|
25
|
+
|
26
|
+
var hasToStringTagAfter = hasSymbolToStringTag();
|
27
|
+
t.equal(hasToStringTagAfter, true, 'hasSymbolToStringTag is true after polyfilling');
|
28
|
+
/* eslint-enable global-require */
|
29
|
+
t.end();
|
30
|
+
});
|
@@ -0,0 +1,15 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
// eslint-disable-next-line consistent-return
|
4
|
+
module.exports = /** @type {(t: import('tape').Test) => void | false} */ function runSymbolTests(t) {
|
5
|
+
t.equal(typeof Symbol, 'function', 'global Symbol is a function');
|
6
|
+
t.ok(Symbol.toStringTag, 'Symbol.toStringTag exists');
|
7
|
+
|
8
|
+
if (typeof Symbol !== 'function' || !Symbol.toStringTag) { return false; }
|
9
|
+
|
10
|
+
/** @type {{ [Symbol.toStringTag]?: 'test'}} */
|
11
|
+
var obj = {};
|
12
|
+
obj[Symbol.toStringTag] = 'test';
|
13
|
+
|
14
|
+
t.equal(Object.prototype.toString.call(obj), '[object test]');
|
15
|
+
};
|
@@ -0,0 +1,49 @@
|
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
/* Visit https://aka.ms/tsconfig to read more about this file */
|
4
|
+
|
5
|
+
/* Projects */
|
6
|
+
|
7
|
+
/* Language and Environment */
|
8
|
+
"target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
9
|
+
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
10
|
+
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
11
|
+
"useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
12
|
+
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
13
|
+
|
14
|
+
/* Modules */
|
15
|
+
"module": "commonjs", /* Specify what module code is generated. */
|
16
|
+
// "rootDir": "./", /* Specify the root folder within your source files. */
|
17
|
+
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
|
18
|
+
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
19
|
+
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
20
|
+
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
21
|
+
"typeRoots": ["types"], /* Specify multiple folders that act like './node_modules/@types'. */
|
22
|
+
"resolveJsonModule": true, /* Enable importing .json files. */
|
23
|
+
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
|
24
|
+
|
25
|
+
/* JavaScript Support */
|
26
|
+
"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
27
|
+
"checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
28
|
+
"maxNodeModuleJsDepth": 0, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
29
|
+
|
30
|
+
/* Emit */
|
31
|
+
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
32
|
+
"declarationMap": true, /* Create sourcemaps for d.ts files. */
|
33
|
+
"noEmit": true, /* Disable emitting files from a compilation. */
|
34
|
+
|
35
|
+
/* Interop Constraints */
|
36
|
+
"allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
37
|
+
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
38
|
+
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
39
|
+
|
40
|
+
/* Type Checking */
|
41
|
+
"strict": true, /* Enable all strict type-checking options. */
|
42
|
+
|
43
|
+
/* Completeness */
|
44
|
+
//"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
45
|
+
},
|
46
|
+
"exclude": [
|
47
|
+
"coverage"
|
48
|
+
]
|
49
|
+
}
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [v1.13.4](https://github.com/inspect-js/object-inspect/compare/v1.13.3...v1.13.4) - 2025-02-04
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- [Fix] avoid being fooled by a `Symbol.toStringTag` [`fa5870d`](https://github.com/inspect-js/object-inspect/commit/fa5870da468a525d2f20193700f70752f506cbf7)
|
13
|
+
- [Tests] fix tests in node v6.0 - v6.4 [`2abfe1b`](https://github.com/inspect-js/object-inspect/commit/2abfe1bc3c69f9293c07c5cd65a9d7d87a628b84)
|
14
|
+
- [Dev Deps] update `es-value-fixtures`, `for-each`, `has-symbols` [`3edfb01`](https://github.com/inspect-js/object-inspect/commit/3edfb01cc8cce220fba0dfdfe2dc8bc955758cdd)
|
15
|
+
|
8
16
|
## [v1.13.3](https://github.com/inspect-js/object-inspect/compare/v1.13.2...v1.13.3) - 2024-11-09
|
9
17
|
|
10
18
|
### Commits
|
@@ -287,13 +287,16 @@ function quote(s) {
|
|
287
287
|
return $replace.call(String(s), /"/g, '"');
|
288
288
|
}
|
289
289
|
|
290
|
-
function
|
291
|
-
|
292
|
-
|
293
|
-
function
|
294
|
-
function
|
295
|
-
function
|
296
|
-
function
|
290
|
+
function canTrustToString(obj) {
|
291
|
+
return !toStringTag || !(typeof obj === 'object' && (toStringTag in obj || typeof obj[toStringTag] !== 'undefined'));
|
292
|
+
}
|
293
|
+
function isArray(obj) { return toStr(obj) === '[object Array]' && canTrustToString(obj); }
|
294
|
+
function isDate(obj) { return toStr(obj) === '[object Date]' && canTrustToString(obj); }
|
295
|
+
function isRegExp(obj) { return toStr(obj) === '[object RegExp]' && canTrustToString(obj); }
|
296
|
+
function isError(obj) { return toStr(obj) === '[object Error]' && canTrustToString(obj); }
|
297
|
+
function isString(obj) { return toStr(obj) === '[object String]' && canTrustToString(obj); }
|
298
|
+
function isNumber(obj) { return toStr(obj) === '[object Number]' && canTrustToString(obj); }
|
299
|
+
function isBoolean(obj) { return toStr(obj) === '[object Boolean]' && canTrustToString(obj); }
|
297
300
|
|
298
301
|
// Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives
|
299
302
|
function isSymbol(obj) {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "object-inspect",
|
3
|
-
"version": "1.13.
|
3
|
+
"version": "1.13.4",
|
4
4
|
"description": "string representations of objects in node and the browser",
|
5
5
|
"main": "index.js",
|
6
6
|
"sideEffects": false,
|
@@ -10,13 +10,13 @@
|
|
10
10
|
"auto-changelog": "^2.5.0",
|
11
11
|
"core-js": "^2.6.12",
|
12
12
|
"error-cause": "^1.0.8",
|
13
|
-
"es-value-fixtures": "^1.
|
13
|
+
"es-value-fixtures": "^1.7.1",
|
14
14
|
"eslint": "=8.8.0",
|
15
|
-
"for-each": "^0.3.
|
15
|
+
"for-each": "^0.3.4",
|
16
16
|
"functions-have-names": "^1.2.3",
|
17
17
|
"glob": "=10.3.7",
|
18
18
|
"globalthis": "^1.0.4",
|
19
|
-
"has-symbols": "^1.0
|
19
|
+
"has-symbols": "^1.1.0",
|
20
20
|
"has-tostringtag": "^1.0.2",
|
21
21
|
"in-publish": "^2.0.1",
|
22
22
|
"jackspeak": "=2.1.1",
|
@@ -26,6 +26,7 @@
|
|
26
26
|
"nyc": "^10.3.2",
|
27
27
|
"safe-publish-latest": "^2.0.0",
|
28
28
|
"safer-buffer": "^2.1.2",
|
29
|
+
"semver": "^6.3.1",
|
29
30
|
"string.prototype.repeat": "^1.0.0",
|
30
31
|
"tape": "^5.9.0"
|
31
32
|
},
|
@@ -5,6 +5,8 @@ var test = require('tape');
|
|
5
5
|
var mockProperty = require('mock-property');
|
6
6
|
var hasSymbols = require('has-symbols/shams')();
|
7
7
|
var hasToStringTag = require('has-tostringtag/shams')();
|
8
|
+
var forEach = require('for-each');
|
9
|
+
var semver = require('semver');
|
8
10
|
|
9
11
|
test('values', function (t) {
|
10
12
|
t.plan(1);
|
@@ -209,3 +211,51 @@ test('RegExps', function (t) {
|
|
209
211
|
|
210
212
|
t.end();
|
211
213
|
});
|
214
|
+
|
215
|
+
test('Proxies', { skip: typeof Proxy !== 'function' || !hasToStringTag }, function (t) {
|
216
|
+
var target = { proxy: true };
|
217
|
+
var fake = new Proxy(target, { has: function () { return false; } });
|
218
|
+
|
219
|
+
// needed to work around a weird difference in node v6.0 - v6.4 where non-present properties are not logged
|
220
|
+
var isNode60 = semver.satisfies(process.version, '6.0 - 6.4');
|
221
|
+
|
222
|
+
forEach([
|
223
|
+
'Boolean',
|
224
|
+
'Number',
|
225
|
+
'String',
|
226
|
+
'Symbol',
|
227
|
+
'Date'
|
228
|
+
], function (tag) {
|
229
|
+
target[Symbol.toStringTag] = tag;
|
230
|
+
|
231
|
+
t.equal(
|
232
|
+
inspect(fake),
|
233
|
+
'{ ' + (isNode60 ? '' : 'proxy: true, ') + '[Symbol(Symbol.toStringTag)]: \'' + tag + '\' }',
|
234
|
+
'Proxy for + ' + tag + ' shows as the target, which has no slots'
|
235
|
+
);
|
236
|
+
});
|
237
|
+
|
238
|
+
t.end();
|
239
|
+
});
|
240
|
+
|
241
|
+
test('fakers', { skip: !hasToStringTag }, function (t) {
|
242
|
+
var target = { proxy: false };
|
243
|
+
|
244
|
+
forEach([
|
245
|
+
'Boolean',
|
246
|
+
'Number',
|
247
|
+
'String',
|
248
|
+
'Symbol',
|
249
|
+
'Date'
|
250
|
+
], function (tag) {
|
251
|
+
target[Symbol.toStringTag] = tag;
|
252
|
+
|
253
|
+
t.equal(
|
254
|
+
inspect(target),
|
255
|
+
'{ proxy: false, [Symbol(Symbol.toStringTag)]: \'' + tag + '\' }',
|
256
|
+
'Object pretending to be ' + tag + ' does not trick us'
|
257
|
+
);
|
258
|
+
});
|
259
|
+
|
260
|
+
t.end();
|
261
|
+
});
|
@@ -1,6 +1,6 @@
|
|
1
1
|
const debug = require('../internal/debug')
|
2
2
|
const { MAX_LENGTH, MAX_SAFE_INTEGER } = require('../internal/constants')
|
3
|
-
const { safeRe: re, t } = require('../internal/re')
|
3
|
+
const { safeRe: re, safeSrc: src, t } = require('../internal/re')
|
4
4
|
|
5
5
|
const parseOptions = require('../internal/parse-options')
|
6
6
|
const { compareIdentifiers } = require('../internal/identifiers')
|
@@ -182,7 +182,8 @@ class SemVer {
|
|
182
182
|
}
|
183
183
|
// Avoid an invalid semver results
|
184
184
|
if (identifier) {
|
185
|
-
const
|
185
|
+
const r = new RegExp(`^${this.options.loose ? src[t.PRERELEASELOOSE] : src[t.PRERELEASE]}$`)
|
186
|
+
const match = `-${identifier}`.match(r)
|
186
187
|
if (!match || match[1] !== identifier) {
|
187
188
|
throw new Error(`invalid identifier: ${identifier}`)
|
188
189
|
}
|
@@ -10,6 +10,7 @@ exports = module.exports = {}
|
|
10
10
|
const re = exports.re = []
|
11
11
|
const safeRe = exports.safeRe = []
|
12
12
|
const src = exports.src = []
|
13
|
+
const safeSrc = exports.safeSrc = []
|
13
14
|
const t = exports.t = {}
|
14
15
|
let R = 0
|
15
16
|
|
@@ -42,6 +43,7 @@ const createToken = (name, value, isGlobal) => {
|
|
42
43
|
debug(name, index, value)
|
43
44
|
t[name] = index
|
44
45
|
src[index] = value
|
46
|
+
safeSrc[index] = safe
|
45
47
|
re[index] = new RegExp(value, isGlobal ? 'g' : undefined)
|
46
48
|
safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined)
|
47
49
|
}
|
package/package.json
CHANGED