@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
package/.nvmrc
CHANGED
@@ -1 +1 @@
|
|
1
|
-
22.
|
1
|
+
22.14.0
|
@@ -8,6 +8,7 @@ var fs = require('fs');
|
|
8
8
|
var Stream = require('stream').Stream;
|
9
9
|
var mime = require('mime-types');
|
10
10
|
var asynckit = require('asynckit');
|
11
|
+
var setToStringTag = require('es-set-tostringtag');
|
11
12
|
var populate = require('./populate.js');
|
12
13
|
|
13
14
|
// Public API
|
@@ -102,7 +103,7 @@ FormData.prototype._trackLength = function(header, value, options) {
|
|
102
103
|
FormData.LINE_BREAK.length;
|
103
104
|
|
104
105
|
// empty or either doesn't have path or not an http response or not a stream
|
105
|
-
if (!value || ( !value.path && !(value.readable &&
|
106
|
+
if (!value || ( !value.path && !(value.readable && Object.prototype.hasOwnProperty.call(value, 'httpVersion')) && !(value instanceof Stream))) {
|
106
107
|
return;
|
107
108
|
}
|
108
109
|
|
@@ -113,8 +114,7 @@ FormData.prototype._trackLength = function(header, value, options) {
|
|
113
114
|
};
|
114
115
|
|
115
116
|
FormData.prototype._lengthRetriever = function(value, callback) {
|
116
|
-
|
117
|
-
if (value.hasOwnProperty('fd')) {
|
117
|
+
if (Object.prototype.hasOwnProperty.call(value, 'fd')) {
|
118
118
|
|
119
119
|
// take read range into a account
|
120
120
|
// `end` = Infinity –> read file till the end
|
@@ -149,11 +149,11 @@ FormData.prototype._lengthRetriever = function(value, callback) {
|
|
149
149
|
}
|
150
150
|
|
151
151
|
// or http response
|
152
|
-
} else if (
|
152
|
+
} else if (Object.prototype.hasOwnProperty.call(value, 'httpVersion')) {
|
153
153
|
callback(null, +value.headers['content-length']);
|
154
154
|
|
155
155
|
// or request stream http://github.com/mikeal/request
|
156
|
-
} else if (
|
156
|
+
} else if (Object.prototype.hasOwnProperty.call(value, 'httpModule')) {
|
157
157
|
// wait till response come back
|
158
158
|
value.on('response', function(response) {
|
159
159
|
value.pause();
|
@@ -193,22 +193,23 @@ FormData.prototype._multiPartHeader = function(field, value, options) {
|
|
193
193
|
|
194
194
|
var header;
|
195
195
|
for (var prop in headers) {
|
196
|
-
if (
|
197
|
-
|
196
|
+
if (Object.prototype.hasOwnProperty.call(headers, prop)) {
|
197
|
+
header = headers[prop];
|
198
198
|
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
199
|
+
// skip nullish headers.
|
200
|
+
if (header == null) {
|
201
|
+
continue;
|
202
|
+
}
|
203
203
|
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
204
|
+
// convert all headers to arrays.
|
205
|
+
if (!Array.isArray(header)) {
|
206
|
+
header = [header];
|
207
|
+
}
|
208
208
|
|
209
|
-
|
210
|
-
|
211
|
-
|
209
|
+
// add non-empty headers.
|
210
|
+
if (header.length) {
|
211
|
+
contents += prop + ': ' + header.join('; ') + FormData.LINE_BREAK;
|
212
|
+
}
|
212
213
|
}
|
213
214
|
}
|
214
215
|
|
@@ -229,7 +230,7 @@ FormData.prototype._getContentDisposition = function(value, options) {
|
|
229
230
|
// formidable and the browser add a name property
|
230
231
|
// fs- and request- streams have path property
|
231
232
|
filename = path.basename(options.filename || value.name || value.path);
|
232
|
-
} else if (value.readable &&
|
233
|
+
} else if (value.readable && Object.prototype.hasOwnProperty.call(value, 'httpVersion')) {
|
233
234
|
// or try http response
|
234
235
|
filename = path.basename(value.client._httpMessage.path || '');
|
235
236
|
}
|
@@ -257,7 +258,7 @@ FormData.prototype._getContentType = function(value, options) {
|
|
257
258
|
}
|
258
259
|
|
259
260
|
// or if it's http-reponse
|
260
|
-
if (!contentType && value.readable &&
|
261
|
+
if (!contentType && value.readable && Object.prototype.hasOwnProperty.call(value, 'httpVersion')) {
|
261
262
|
contentType = value.headers['content-type'];
|
262
263
|
}
|
263
264
|
|
@@ -298,7 +299,7 @@ FormData.prototype.getHeaders = function(userHeaders) {
|
|
298
299
|
};
|
299
300
|
|
300
301
|
for (header in userHeaders) {
|
301
|
-
if (
|
302
|
+
if (Object.prototype.hasOwnProperty.call(userHeaders, header)) {
|
302
303
|
formHeaders[header.toLowerCase()] = userHeaders[header];
|
303
304
|
}
|
304
305
|
}
|
@@ -319,7 +320,7 @@ FormData.prototype.getBoundary = function() {
|
|
319
320
|
};
|
320
321
|
|
321
322
|
FormData.prototype.getBuffer = function() {
|
322
|
-
var dataBuffer = new Buffer.alloc(
|
323
|
+
var dataBuffer = new Buffer.alloc(0);
|
323
324
|
var boundary = this.getBoundary();
|
324
325
|
|
325
326
|
// Create the form content. Add Line breaks to the end of data.
|
@@ -499,3 +500,4 @@ FormData.prototype._error = function(err) {
|
|
499
500
|
FormData.prototype.toString = function () {
|
500
501
|
return '[object FormData]';
|
501
502
|
};
|
503
|
+
setToStringTag(FormData, 'FormData');
|
@@ -2,7 +2,7 @@
|
|
2
2
|
"author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
|
3
3
|
"name": "form-data",
|
4
4
|
"description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.",
|
5
|
-
"version": "4.0.
|
5
|
+
"version": "4.0.2",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
8
8
|
"url": "git://github.com/form-data/form-data.git"
|
@@ -43,29 +43,32 @@
|
|
43
43
|
"dependencies": {
|
44
44
|
"asynckit": "^0.4.0",
|
45
45
|
"combined-stream": "^1.0.8",
|
46
|
+
"es-set-tostringtag": "^2.1.0",
|
46
47
|
"mime-types": "^2.1.12"
|
47
48
|
},
|
48
49
|
"devDependencies": {
|
49
|
-
"@types/
|
50
|
-
"
|
50
|
+
"@types/combined-stream": "^1.0.6",
|
51
|
+
"@types/mime-types": "^2.1.4",
|
52
|
+
"@types/node": "^12.20.55",
|
53
|
+
"browserify": "^13.3.0",
|
51
54
|
"browserify-istanbul": "^2.0.0",
|
52
|
-
"coveralls": "^3.
|
53
|
-
"cross-spawn": "^6.0.
|
54
|
-
"eslint": "^6.0
|
55
|
+
"coveralls": "^3.1.1",
|
56
|
+
"cross-spawn": "^6.0.6",
|
57
|
+
"eslint": "^6.8.0",
|
55
58
|
"fake": "^0.2.2",
|
56
59
|
"far": "^0.0.7",
|
57
|
-
"formidable": "^1.
|
58
|
-
"in-publish": "^2.0.
|
60
|
+
"formidable": "^1.2.6",
|
61
|
+
"in-publish": "^2.0.1",
|
59
62
|
"is-node-modern": "^1.0.0",
|
60
63
|
"istanbul": "^0.4.5",
|
61
64
|
"obake": "^0.1.2",
|
62
|
-
"
|
63
|
-
"
|
64
|
-
"
|
65
|
-
"request": "
|
65
|
+
"pkgfiles": "^2.3.2",
|
66
|
+
"pre-commit": "^1.2.2",
|
67
|
+
"puppeteer": "^1.20.0",
|
68
|
+
"request": "~2.87.0",
|
66
69
|
"rimraf": "^2.7.1",
|
67
|
-
"tape": "^
|
68
|
-
"typescript": "^3.
|
70
|
+
"tape": "^5.9.0",
|
71
|
+
"typescript": "^3.9.10"
|
69
72
|
},
|
70
73
|
"license": "MIT"
|
71
74
|
}
|
@@ -5,6 +5,13 @@ 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.0.2](https://github.com/ljharb/call-bind-apply-helpers/compare/v1.0.1...v1.0.2) - 2025-02-12
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- [types] improve inferred types [`e6f9586`](https://github.com/ljharb/call-bind-apply-helpers/commit/e6f95860a3c72879cb861a858cdfb8138fbedec1)
|
13
|
+
- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape`, `es-value-fixtures`, `for-each`, `has-strict-mode`, `object-inspect` [`e43d540`](https://github.com/ljharb/call-bind-apply-helpers/commit/e43d5409f97543bfbb11f345d47d8ce4e066d8c1)
|
14
|
+
|
8
15
|
## [v1.0.1](https://github.com/ljharb/call-bind-apply-helpers/compare/v1.0.0...v1.0.1) - 2024-12-08
|
9
16
|
|
10
17
|
### Commits
|
@@ -1,46 +1,64 @@
|
|
1
1
|
type RemoveFromTuple<
|
2
|
-
Tuple extends unknown[],
|
2
|
+
Tuple extends readonly unknown[],
|
3
3
|
RemoveCount extends number,
|
4
4
|
Index extends 1[] = []
|
5
5
|
> = Index["length"] extends RemoveCount
|
6
6
|
? Tuple
|
7
|
-
: Tuple extends [
|
7
|
+
: Tuple extends [infer First, ...infer Rest]
|
8
8
|
? RemoveFromTuple<Rest, RemoveCount, [...Index, 1]>
|
9
9
|
: Tuple;
|
10
10
|
|
11
11
|
type ConcatTuples<
|
12
|
-
Prefix extends unknown[],
|
13
|
-
Suffix extends unknown[]
|
12
|
+
Prefix extends readonly unknown[],
|
13
|
+
Suffix extends readonly unknown[]
|
14
14
|
> = [...Prefix, ...Suffix];
|
15
15
|
|
16
|
-
type
|
17
|
-
?
|
16
|
+
type ExtractFunctionParams<T> = T extends (this: infer TThis, ...args: infer P extends readonly unknown[]) => infer R
|
17
|
+
? { thisArg: TThis; params: P; returnType: R }
|
18
18
|
: never;
|
19
19
|
|
20
20
|
type BindFunction<
|
21
|
+
T extends (this: any, ...args: any[]) => any,
|
21
22
|
TThis,
|
22
|
-
|
23
|
-
TBoundArgs extends unknown[],
|
23
|
+
TBoundArgs extends readonly unknown[],
|
24
24
|
ReceiverBound extends boolean
|
25
|
-
> =
|
26
|
-
|
27
|
-
:
|
25
|
+
> = ExtractFunctionParams<T> extends {
|
26
|
+
thisArg: infer OrigThis;
|
27
|
+
params: infer P extends readonly unknown[];
|
28
|
+
returnType: infer R;
|
29
|
+
}
|
30
|
+
? ReceiverBound extends true
|
31
|
+
? (...args: RemoveFromTuple<P, Extract<TBoundArgs["length"], number>>) => R extends [OrigThis, ...infer Rest]
|
32
|
+
? [TThis, ...Rest] // Replace `this` with `thisArg`
|
33
|
+
: R
|
34
|
+
: <U, RemainingArgs extends RemoveFromTuple<P, Extract<TBoundArgs["length"], number>>>(
|
35
|
+
thisArg: U,
|
36
|
+
...args: RemainingArgs
|
37
|
+
) => R extends [OrigThis, ...infer Rest]
|
38
|
+
? [U, ...ConcatTuples<TBoundArgs, Rest>] // Preserve bound args in return type
|
39
|
+
: R
|
40
|
+
: never;
|
28
41
|
|
29
42
|
declare function callBind<
|
30
|
-
|
31
|
-
|
32
|
-
TBoundArgs extends Partial<
|
43
|
+
const T extends (this: any, ...args: any[]) => any,
|
44
|
+
Extracted extends ExtractFunctionParams<T>,
|
45
|
+
const TBoundArgs extends Partial<Extracted["params"]> & readonly unknown[],
|
46
|
+
const TThis extends Extracted["thisArg"]
|
33
47
|
>(
|
34
48
|
args: [fn: T, thisArg: TThis, ...boundArgs: TBoundArgs]
|
35
|
-
): BindFunction<
|
49
|
+
): BindFunction<T, TThis, TBoundArgs, true>;
|
36
50
|
|
37
51
|
declare function callBind<
|
38
|
-
|
39
|
-
|
40
|
-
TBoundArgs extends Partial<
|
52
|
+
const T extends (this: any, ...args: any[]) => any,
|
53
|
+
Extracted extends ExtractFunctionParams<T>,
|
54
|
+
const TBoundArgs extends Partial<Extracted["params"]> & readonly unknown[]
|
41
55
|
>(
|
42
56
|
args: [fn: T, ...boundArgs: TBoundArgs]
|
43
|
-
): BindFunction<
|
57
|
+
): BindFunction<T, Extracted["thisArg"], TBoundArgs, false>;
|
58
|
+
|
59
|
+
declare function callBind<const TArgs extends readonly unknown[]>(
|
60
|
+
args: [fn: Exclude<TArgs[0], Function>, ...rest: TArgs]
|
61
|
+
): never;
|
44
62
|
|
45
|
-
export as namespace callBind;
|
63
|
+
// export as namespace callBind;
|
46
64
|
export = callBind;
|
@@ -6,7 +6,7 @@ var $TypeError = require('es-errors/type');
|
|
6
6
|
var $call = require('./functionCall');
|
7
7
|
var $actualApply = require('./actualApply');
|
8
8
|
|
9
|
-
/** @type {import('.')
|
9
|
+
/** @type {(args: [Function, thisArg?: unknown, ...args: unknown[]]) => Function} TODO FIXME, find a way to use import('.') */
|
10
10
|
module.exports = function callBindBasic(args) {
|
11
11
|
if (args.length < 1 || typeof args[0] !== 'function') {
|
12
12
|
throw new $TypeError('a function is required');
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "call-bind-apply-helpers",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.2",
|
4
4
|
"description": "Helper functions around Function call/apply/bind, for use in `call-bind`",
|
5
5
|
"main": "index.js",
|
6
6
|
"exports": {
|
@@ -41,24 +41,24 @@
|
|
41
41
|
"function-bind": "^1.1.2"
|
42
42
|
},
|
43
43
|
"devDependencies": {
|
44
|
-
"@arethetypeswrong/cli": "^0.17.
|
44
|
+
"@arethetypeswrong/cli": "^0.17.3",
|
45
45
|
"@ljharb/eslint-config": "^21.1.1",
|
46
|
-
"@ljharb/tsconfig": "^0.2.
|
46
|
+
"@ljharb/tsconfig": "^0.2.3",
|
47
47
|
"@types/for-each": "^0.3.3",
|
48
48
|
"@types/function-bind": "^1.1.10",
|
49
49
|
"@types/object-inspect": "^1.13.0",
|
50
|
-
"@types/tape": "^5.
|
50
|
+
"@types/tape": "^5.8.1",
|
51
51
|
"auto-changelog": "^2.5.0",
|
52
52
|
"encoding": "^0.1.13",
|
53
|
-
"es-value-fixtures": "^1.
|
53
|
+
"es-value-fixtures": "^1.7.1",
|
54
54
|
"eslint": "=8.8.0",
|
55
55
|
"evalmd": "^0.0.19",
|
56
|
-
"for-each": "^0.3.
|
57
|
-
"has-strict-mode": "^1.0
|
56
|
+
"for-each": "^0.3.5",
|
57
|
+
"has-strict-mode": "^1.1.0",
|
58
58
|
"in-publish": "^2.0.1",
|
59
59
|
"npmignore": "^0.3.1",
|
60
60
|
"nyc": "^10.3.2",
|
61
|
-
"object-inspect": "^1.13.
|
61
|
+
"object-inspect": "^1.13.4",
|
62
62
|
"safe-publish-latest": "^2.0.0",
|
63
63
|
"tape": "^5.9.0",
|
64
64
|
"typescript": "next"
|
@@ -19,7 +19,7 @@ test('callBindBasic', function (t) {
|
|
19
19
|
});
|
20
20
|
|
21
21
|
var sentinel = { sentinel: true };
|
22
|
-
/** @type {<T>(this: T, a:
|
22
|
+
/** @type {<T, A extends number, B extends number>(this: T, a: A, b: B) => [T | undefined, A, B]} */
|
23
23
|
var func = function (a, b) {
|
24
24
|
// eslint-disable-next-line no-invalid-this
|
25
25
|
return [!hasStrictMode && this === global ? undefined : this, a, b];
|
@@ -28,10 +28,10 @@ test('callBindBasic', function (t) {
|
|
28
28
|
|
29
29
|
/** type {(thisArg: unknown, a: number, b: number) => [unknown, number, number]} */
|
30
30
|
var bound = callBind([func]);
|
31
|
-
/** type {((a: number, b: number) => [sentinel, typeof a, typeof b])} */
|
31
|
+
/** type {((a: number, b: number) => [typeof sentinel, typeof a, typeof b])} */
|
32
32
|
var boundR = callBind([func, sentinel]);
|
33
|
-
/** type {((b: number) => [sentinel, number, typeof b])} */
|
34
|
-
var boundArg = callBind([func, sentinel, 1]);
|
33
|
+
/** type {((b: number) => [typeof sentinel, number, typeof b])} */
|
34
|
+
var boundArg = callBind([func, sentinel, /** @type {const} */ (1)]);
|
35
35
|
|
36
36
|
// @ts-expect-error
|
37
37
|
t.deepEqual(bound(), [undefined, undefined, undefined], 'bound func with no args');
|
@@ -0,0 +1,67 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
|
+
|
8
|
+
## [v2.1.0](https://github.com/es-shims/es-set-tostringtag/compare/v2.0.3...v2.1.0) - 2025-01-01
|
9
|
+
|
10
|
+
### Commits
|
11
|
+
|
12
|
+
- [actions] split out node 10-20, and 20+ [`ede033c`](https://github.com/es-shims/es-set-tostringtag/commit/ede033cc4e506c3966d2d482d4ac5987e329162a)
|
13
|
+
- [types] use shared config [`28ef164`](https://github.com/es-shims/es-set-tostringtag/commit/28ef164ad7c5bc21837c79f7ef25542a1f258ade)
|
14
|
+
- [New] add `nonConfigurable` option [`3bee3f0`](https://github.com/es-shims/es-set-tostringtag/commit/3bee3f04caddd318f3932912212ed20b2d62aad7)
|
15
|
+
- [Fix] validate boolean option argument [`3c8a609`](https://github.com/es-shims/es-set-tostringtag/commit/3c8a609c795a305ccca163f0ff6956caa88cdc0e)
|
16
|
+
- [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/get-intrinsic`, `@types/tape`, `auto-changelog`, `tape` [`501a969`](https://github.com/es-shims/es-set-tostringtag/commit/501a96998484226e07f5ffd447e8f305a998f1d8)
|
17
|
+
- [Tests] add coverage [`18af289`](https://github.com/es-shims/es-set-tostringtag/commit/18af2897b4e937373c9b8c8831bc338932246470)
|
18
|
+
- [readme] document `force` option [`bd446a1`](https://github.com/es-shims/es-set-tostringtag/commit/bd446a107b71a2270278442e5124f45590d3ee64)
|
19
|
+
- [Tests] use `@arethetypeswrong/cli` [`7c2c2fa`](https://github.com/es-shims/es-set-tostringtag/commit/7c2c2fa3cca0f4d263603adb75426b239514598f)
|
20
|
+
- [Tests] replace `aud` with `npm audit` [`9e372d7`](https://github.com/es-shims/es-set-tostringtag/commit/9e372d7e6db3dab405599a14d9074a99a03b8242)
|
21
|
+
- [Deps] update `get-intrinsic` [`7df1216`](https://github.com/es-shims/es-set-tostringtag/commit/7df12167295385c2a547410e687cb0c04f3a34b9)
|
22
|
+
- [Deps] update `hasown` [`993a7d2`](https://github.com/es-shims/es-set-tostringtag/commit/993a7d200e2059fd857ec1a25d0a49c2c34ae6e2)
|
23
|
+
- [Dev Deps] add missing peer dep [`148ed8d`](https://github.com/es-shims/es-set-tostringtag/commit/148ed8db99a7a94f9af3823fd083e6e437fa1587)
|
24
|
+
|
25
|
+
## [v2.0.3](https://github.com/es-shims/es-set-tostringtag/compare/v2.0.2...v2.0.3) - 2024-02-20
|
26
|
+
|
27
|
+
### Commits
|
28
|
+
|
29
|
+
- add types [`d538513`](https://github.com/es-shims/es-set-tostringtag/commit/d5385133592a32a0a416cb535327918af7fbc4ad)
|
30
|
+
- [Deps] update `get-intrinsic`, `has-tostringtag`, `hasown` [`d129b29`](https://github.com/es-shims/es-set-tostringtag/commit/d129b29536bccc8a9d03a47887ca4d1f7ad0c5b9)
|
31
|
+
- [Dev Deps] update `aud`, `npmignore`, `tape` [`132ed23`](https://github.com/es-shims/es-set-tostringtag/commit/132ed23c964a41ed55e4ab4a5a2c3fe185e821c1)
|
32
|
+
- [Tests] fix hasOwn require [`f89c831`](https://github.com/es-shims/es-set-tostringtag/commit/f89c831fe5f3edf1f979c597b56fee1be6111f56)
|
33
|
+
|
34
|
+
## [v2.0.2](https://github.com/es-shims/es-set-tostringtag/compare/v2.0.1...v2.0.2) - 2023-10-20
|
35
|
+
|
36
|
+
### Commits
|
37
|
+
|
38
|
+
- [Refactor] use `hasown` instead of `has` [`0cc6c4e`](https://github.com/es-shims/es-set-tostringtag/commit/0cc6c4e61fd13e8f00b85424ae6e541ebf289e74)
|
39
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `tape` [`70e447c`](https://github.com/es-shims/es-set-tostringtag/commit/70e447cf9f82b896ddf359fda0a0498c16cf3ed2)
|
40
|
+
- [Deps] update `get-intrinsic` [`826aab7`](https://github.com/es-shims/es-set-tostringtag/commit/826aab76180392871c8efa99acc0f0bbf775c64e)
|
41
|
+
|
42
|
+
## [v2.0.1](https://github.com/es-shims/es-set-tostringtag/compare/v2.0.0...v2.0.1) - 2023-01-05
|
43
|
+
|
44
|
+
### Fixed
|
45
|
+
|
46
|
+
- [Fix] move `has` to prod deps [`#2`](https://github.com/es-shims/es-set-tostringtag/issues/2)
|
47
|
+
|
48
|
+
### Commits
|
49
|
+
|
50
|
+
- [Dev Deps] update `@ljharb/eslint-config` [`b9eecd2`](https://github.com/es-shims/es-set-tostringtag/commit/b9eecd23c10b7b43ba75089ac8ff8cc6b295798b)
|
51
|
+
|
52
|
+
## [v2.0.0](https://github.com/es-shims/es-set-tostringtag/compare/v1.0.0...v2.0.0) - 2022-12-21
|
53
|
+
|
54
|
+
### Commits
|
55
|
+
|
56
|
+
- [Tests] refactor tests [`168dcfb`](https://github.com/es-shims/es-set-tostringtag/commit/168dcfbb535c279dc48ccdc89419155125aaec18)
|
57
|
+
- [Breaking] do not set toStringTag if it is already set [`226ab87`](https://github.com/es-shims/es-set-tostringtag/commit/226ab874192c625d9e5f0e599d3f60d2b2aa83b5)
|
58
|
+
- [New] add `force` option to set even if already set [`1abd4ec`](https://github.com/es-shims/es-set-tostringtag/commit/1abd4ecb282f19718c4518284b0293a343564505)
|
59
|
+
|
60
|
+
## v1.0.0 - 2022-12-21
|
61
|
+
|
62
|
+
### Commits
|
63
|
+
|
64
|
+
- Initial implementation, tests, readme [`a0e1147`](https://github.com/es-shims/es-set-tostringtag/commit/a0e11473f79a233b46374525c962ea1b4d42418a)
|
65
|
+
- Initial commit [`ffd4aff`](https://github.com/es-shims/es-set-tostringtag/commit/ffd4afffbeebf29aff0d87a7cfc3f7844e09fe68)
|
66
|
+
- npm init [`fffe5bd`](https://github.com/es-shims/es-set-tostringtag/commit/fffe5bd1d1146d084730a387a9c672371f4a8fff)
|
67
|
+
- Only apps should have lockfiles [`d363871`](https://github.com/es-shims/es-set-tostringtag/commit/d36387139465623e161a15dbd39120537f150c62)
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2022 ECMAScript Shims
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# es-set-tostringtag <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
|
2
|
+
|
3
|
+
[![github actions][actions-image]][actions-url]
|
4
|
+
[![coverage][codecov-image]][codecov-url]
|
5
|
+
[![License][license-image]][license-url]
|
6
|
+
[![Downloads][downloads-image]][downloads-url]
|
7
|
+
|
8
|
+
[![npm badge][npm-badge-png]][package-url]
|
9
|
+
|
10
|
+
A helper to optimistically set Symbol.toStringTag, when possible.
|
11
|
+
|
12
|
+
## Example
|
13
|
+
Most common usage:
|
14
|
+
```js
|
15
|
+
var assert = require('assert');
|
16
|
+
var setToStringTag = require('es-set-tostringtag');
|
17
|
+
|
18
|
+
var obj = {};
|
19
|
+
|
20
|
+
assert.equal(Object.prototype.toString.call(obj), '[object Object]');
|
21
|
+
|
22
|
+
setToStringTag(obj, 'tagged!');
|
23
|
+
|
24
|
+
assert.equal(Object.prototype.toString.call(obj), '[object tagged!]');
|
25
|
+
```
|
26
|
+
|
27
|
+
## Options
|
28
|
+
An optional options argument can be provided as the third argument. The available options are:
|
29
|
+
|
30
|
+
### `force`
|
31
|
+
If the `force` option is set to `true`, the toStringTag will be set even if it is already set.
|
32
|
+
|
33
|
+
### `nonConfigurable`
|
34
|
+
If the `nonConfigurable` option is set to `true`, the toStringTag will be defined as non-configurable when possible.
|
35
|
+
|
36
|
+
## Tests
|
37
|
+
Simply clone the repo, `npm install`, and run `npm test`
|
38
|
+
|
39
|
+
[package-url]: https://npmjs.com/package/es-set-tostringtag
|
40
|
+
[npm-version-svg]: https://versionbadg.es/es-shims/es-set-tostringtag.svg
|
41
|
+
[deps-svg]: https://david-dm.org/es-shims/es-set-tostringtag.svg
|
42
|
+
[deps-url]: https://david-dm.org/es-shims/es-set-tostringtag
|
43
|
+
[dev-deps-svg]: https://david-dm.org/es-shims/es-set-tostringtag/dev-status.svg
|
44
|
+
[dev-deps-url]: https://david-dm.org/es-shims/es-set-tostringtag#info=devDependencies
|
45
|
+
[npm-badge-png]: https://nodei.co/npm/es-set-tostringtag.png?downloads=true&stars=true
|
46
|
+
[license-image]: https://img.shields.io/npm/l/es-set-tostringtag.svg
|
47
|
+
[license-url]: LICENSE
|
48
|
+
[downloads-image]: https://img.shields.io/npm/dm/es-set-tostringtag.svg
|
49
|
+
[downloads-url]: https://npm-stat.com/charts.html?package=es-set-tostringtag
|
50
|
+
[codecov-image]: https://codecov.io/gh/es-shims/es-set-tostringtag/branch/main/graphs/badge.svg
|
51
|
+
[codecov-url]: https://app.codecov.io/gh/es-shims/es-set-tostringtag/
|
52
|
+
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/es-set-tostringtag
|
53
|
+
[actions-url]: https://github.com/es-shims/es-set-tostringtag/actions
|
@@ -0,0 +1,35 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
var GetIntrinsic = require('get-intrinsic');
|
4
|
+
|
5
|
+
var $defineProperty = GetIntrinsic('%Object.defineProperty%', true);
|
6
|
+
|
7
|
+
var hasToStringTag = require('has-tostringtag/shams')();
|
8
|
+
var hasOwn = require('hasown');
|
9
|
+
var $TypeError = require('es-errors/type');
|
10
|
+
|
11
|
+
var toStringTag = hasToStringTag ? Symbol.toStringTag : null;
|
12
|
+
|
13
|
+
/** @type {import('.')} */
|
14
|
+
module.exports = function setToStringTag(object, value) {
|
15
|
+
var overrideIfSet = arguments.length > 2 && !!arguments[2] && arguments[2].force;
|
16
|
+
var nonConfigurable = arguments.length > 2 && !!arguments[2] && arguments[2].nonConfigurable;
|
17
|
+
if (
|
18
|
+
(typeof overrideIfSet !== 'undefined' && typeof overrideIfSet !== 'boolean')
|
19
|
+
|| (typeof nonConfigurable !== 'undefined' && typeof nonConfigurable !== 'boolean')
|
20
|
+
) {
|
21
|
+
throw new $TypeError('if provided, the `overrideIfSet` and `nonConfigurable` options must be booleans');
|
22
|
+
}
|
23
|
+
if (toStringTag && (overrideIfSet || !hasOwn(object, toStringTag))) {
|
24
|
+
if ($defineProperty) {
|
25
|
+
$defineProperty(object, toStringTag, {
|
26
|
+
configurable: !nonConfigurable,
|
27
|
+
enumerable: false,
|
28
|
+
value: value,
|
29
|
+
writable: false
|
30
|
+
});
|
31
|
+
} else {
|
32
|
+
object[toStringTag] = value; // eslint-disable-line no-param-reassign
|
33
|
+
}
|
34
|
+
}
|
35
|
+
};
|