@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.
Files changed (46) hide show
  1. package/.nvmrc +1 -1
  2. package/node_modules/axios/node_modules/form-data/lib/form_data.js +24 -22
  3. package/node_modules/axios/node_modules/form-data/package.json +17 -14
  4. package/node_modules/call-bind-apply-helpers/.eslintrc +1 -0
  5. package/node_modules/call-bind-apply-helpers/CHANGELOG.md +7 -0
  6. package/node_modules/call-bind-apply-helpers/index.d.ts +38 -20
  7. package/node_modules/call-bind-apply-helpers/index.js +1 -1
  8. package/node_modules/call-bind-apply-helpers/package.json +8 -8
  9. package/node_modules/call-bind-apply-helpers/test/index.js +4 -4
  10. package/node_modules/es-set-tostringtag/.eslintrc +13 -0
  11. package/node_modules/es-set-tostringtag/.nycrc +9 -0
  12. package/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
  13. package/node_modules/es-set-tostringtag/LICENSE +21 -0
  14. package/node_modules/es-set-tostringtag/README.md +53 -0
  15. package/node_modules/es-set-tostringtag/index.d.ts +10 -0
  16. package/node_modules/es-set-tostringtag/index.js +35 -0
  17. package/node_modules/es-set-tostringtag/package.json +78 -0
  18. package/node_modules/es-set-tostringtag/test/index.js +85 -0
  19. package/node_modules/es-set-tostringtag/tsconfig.json +9 -0
  20. package/node_modules/form-data/lib/form_data.js +23 -21
  21. package/node_modules/form-data/package.json +16 -15
  22. package/node_modules/has-tostringtag/.eslintrc +5 -0
  23. package/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
  24. package/node_modules/has-tostringtag/.nycrc +13 -0
  25. package/node_modules/has-tostringtag/CHANGELOG.md +42 -0
  26. package/node_modules/has-tostringtag/LICENSE +21 -0
  27. package/node_modules/has-tostringtag/README.md +46 -0
  28. package/node_modules/has-tostringtag/index.d.ts +3 -0
  29. package/node_modules/has-tostringtag/index.js +8 -0
  30. package/node_modules/has-tostringtag/package.json +108 -0
  31. package/node_modules/has-tostringtag/shams.d.ts +3 -0
  32. package/node_modules/has-tostringtag/shams.js +8 -0
  33. package/node_modules/has-tostringtag/test/index.js +21 -0
  34. package/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
  35. package/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
  36. package/node_modules/has-tostringtag/test/tests.js +15 -0
  37. package/node_modules/has-tostringtag/tsconfig.json +49 -0
  38. package/node_modules/object-inspect/CHANGELOG.md +8 -0
  39. package/node_modules/object-inspect/index.js +10 -7
  40. package/node_modules/object-inspect/package.json +5 -4
  41. package/node_modules/object-inspect/test/values.js +50 -0
  42. package/node_modules/superagent/node_modules/semver/classes/semver.js +3 -2
  43. package/node_modules/superagent/node_modules/semver/internal/re.js +2 -0
  44. package/node_modules/superagent/node_modules/semver/package.json +1 -1
  45. package/package.json +1 -1
  46. package/output/e3e8277b426d4bc636a8ed30e66dd056e6cc9691-corellium-cli-build.tar.gz +0 -0
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "es-set-tostringtag",
3
+ "version": "2.1.0",
4
+ "description": "A helper to optimistically set Symbol.toStringTag, when possible.",
5
+ "main": "index.js",
6
+ "exports": {
7
+ ".": "./index.js",
8
+ "./package.json": "./package.json"
9
+ },
10
+ "sideEffects": false,
11
+ "scripts": {
12
+ "prepack": "npmignore --auto --commentLines=autogenerated",
13
+ "prepublishOnly": "safe-publish-latest",
14
+ "prepublish": "not-in-publish || npm run prepublishOnly",
15
+ "prelint": "evalmd README.md",
16
+ "lint": "eslint --ext=js,mjs .",
17
+ "postlint": "tsc -p . && attw -P",
18
+ "pretest": "npm run lint",
19
+ "tests-only": "nyc tape 'test/**/*.js'",
20
+ "test": "npm run tests-only",
21
+ "posttest": "npx npm@\">= 10.2\" audit --production",
22
+ "version": "auto-changelog && git add CHANGELOG.md",
23
+ "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/es-shims/es-set-tostringtag.git"
28
+ },
29
+ "author": "Jordan Harband <ljharb@gmail.com>",
30
+ "license": "MIT",
31
+ "bugs": {
32
+ "url": "https://github.com/es-shims/es-set-tostringtag/issues"
33
+ },
34
+ "homepage": "https://github.com/es-shims/es-set-tostringtag#readme",
35
+ "devDependencies": {
36
+ "@arethetypeswrong/cli": "^0.17.2",
37
+ "@ljharb/eslint-config": "^21.1.1",
38
+ "@ljharb/tsconfig": "^0.2.3",
39
+ "@types/get-intrinsic": "^1.2.3",
40
+ "@types/has-symbols": "^1.0.2",
41
+ "@types/tape": "^5.8.0",
42
+ "auto-changelog": "^2.5.0",
43
+ "encoding": "^0.1.13",
44
+ "eslint": "=8.8.0",
45
+ "evalmd": "^0.0.19",
46
+ "in-publish": "^2.0.1",
47
+ "npmignore": "^0.3.1",
48
+ "nyc": "^10.3.2",
49
+ "safe-publish-latest": "^2.0.0",
50
+ "tape": "^5.9.0",
51
+ "typescript": "next"
52
+ },
53
+ "dependencies": {
54
+ "es-errors": "^1.3.0",
55
+ "get-intrinsic": "^1.2.6",
56
+ "has-tostringtag": "^1.0.2",
57
+ "hasown": "^2.0.2"
58
+ },
59
+ "engines": {
60
+ "node": ">= 0.4"
61
+ },
62
+ "auto-changelog": {
63
+ "output": "CHANGELOG.md",
64
+ "template": "keepachangelog",
65
+ "unreleased": false,
66
+ "commitLimit": false,
67
+ "backfillLimit": false,
68
+ "hideCredit": true
69
+ },
70
+ "testling": {
71
+ "files": "./test/index.js"
72
+ },
73
+ "publishConfig": {
74
+ "ignore": [
75
+ ".github/workflows"
76
+ ]
77
+ }
78
+ }
@@ -0,0 +1,85 @@
1
+ 'use strict';
2
+
3
+ var test = require('tape');
4
+ var hasToStringTag = require('has-tostringtag/shams')();
5
+ var hasOwn = require('hasown');
6
+
7
+ var setToStringTag = require('../');
8
+
9
+ test('setToStringTag', function (t) {
10
+ t.equal(typeof setToStringTag, 'function', 'is a function');
11
+
12
+ /** @type {{ [Symbol.toStringTag]?: typeof sentinel }} */
13
+ var obj = {};
14
+ var sentinel = {};
15
+
16
+ setToStringTag(obj, sentinel);
17
+
18
+ t['throws'](
19
+ // @ts-expect-error
20
+ function () { setToStringTag(obj, sentinel, { force: 'yes' }); },
21
+ TypeError,
22
+ 'throws if options is not an object'
23
+ );
24
+
25
+ t.test('has Symbol.toStringTag', { skip: !hasToStringTag }, function (st) {
26
+ st.ok(hasOwn(obj, Symbol.toStringTag), 'has toStringTag property');
27
+
28
+ st.equal(obj[Symbol.toStringTag], sentinel, 'toStringTag property is as expected');
29
+
30
+ st.equal(String(obj), '[object Object]', 'toStringTag works');
31
+
32
+ /** @type {{ [Symbol.toStringTag]?: string }} */
33
+ var tagged = {};
34
+ tagged[Symbol.toStringTag] = 'already tagged';
35
+ st.equal(String(tagged), '[object already tagged]', 'toStringTag works');
36
+
37
+ setToStringTag(tagged, 'new tag');
38
+ st.equal(String(tagged), '[object already tagged]', 'toStringTag is unchanged');
39
+
40
+ setToStringTag(tagged, 'new tag', { force: true });
41
+ st.equal(String(tagged), '[object new tag]', 'toStringTag is changed with force: true');
42
+
43
+ st.deepEqual(
44
+ Object.getOwnPropertyDescriptor(tagged, Symbol.toStringTag),
45
+ {
46
+ configurable: true,
47
+ enumerable: false,
48
+ value: 'new tag',
49
+ writable: false
50
+ },
51
+ 'has expected property descriptor'
52
+ );
53
+
54
+ setToStringTag(tagged, 'new tag', { force: true, nonConfigurable: true });
55
+ st.deepEqual(
56
+ Object.getOwnPropertyDescriptor(tagged, Symbol.toStringTag),
57
+ {
58
+ configurable: false,
59
+ enumerable: false,
60
+ value: 'new tag',
61
+ writable: false
62
+ },
63
+ 'is nonconfigurable'
64
+ );
65
+
66
+ st.end();
67
+ });
68
+
69
+ t.test('does not have Symbol.toStringTag', { skip: hasToStringTag }, function (st) {
70
+ var passed = true;
71
+ for (var key in obj) { // eslint-disable-line no-restricted-syntax
72
+ if (hasOwn(obj, key)) {
73
+ st.fail('object has own key ' + key);
74
+ passed = false;
75
+ }
76
+ }
77
+ if (passed) {
78
+ st.ok(true, 'object has no enumerable own keys');
79
+ }
80
+
81
+ st.end();
82
+ });
83
+
84
+ t.end();
85
+ });
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "@ljharb/tsconfig",
3
+ "compilerOptions": {
4
+ "target": "es2021",
5
+ },
6
+ "exclude": [
7
+ "coverage",
8
+ ],
9
+ }
@@ -7,6 +7,7 @@ var parseUrl = require('url').parse;
7
7
  var fs = require('fs');
8
8
  var mime = require('mime-types');
9
9
  var asynckit = require('asynckit');
10
+ var setToStringTag = require('es-set-tostringtag');
10
11
  var populate = require('./populate.js');
11
12
 
12
13
  // Public API
@@ -101,7 +102,7 @@ FormData.prototype._trackLength = function(header, value, options) {
101
102
  FormData.LINE_BREAK.length;
102
103
 
103
104
  // empty or either doesn't have path or not an http response
104
- if (!value || ( !value.path && !(value.readable && value.hasOwnProperty('httpVersion')) )) {
105
+ if (!value || ( !value.path && !(value.readable && Object.prototype.hasOwnProperty.call(value, 'httpVersion')) )) {
105
106
  return;
106
107
  }
107
108
 
@@ -112,8 +113,7 @@ FormData.prototype._trackLength = function(header, value, options) {
112
113
  };
113
114
 
114
115
  FormData.prototype._lengthRetriever = function(value, callback) {
115
-
116
- if (value.hasOwnProperty('fd')) {
116
+ if (Object.prototype.hasOwnProperty.call(value, 'fd')) {
117
117
 
118
118
  // take read range into a account
119
119
  // `end` = Infinity –> read file till the end
@@ -148,11 +148,11 @@ FormData.prototype._lengthRetriever = function(value, callback) {
148
148
  }
149
149
 
150
150
  // or http response
151
- } else if (value.hasOwnProperty('httpVersion')) {
151
+ } else if (Object.prototype.hasOwnProperty.call(value, 'httpVersion')) {
152
152
  callback(null, +value.headers['content-length']);
153
153
 
154
154
  // or request stream http://github.com/mikeal/request
155
- } else if (value.hasOwnProperty('httpModule')) {
155
+ } else if (Object.prototype.hasOwnProperty.call(value, 'httpModule')) {
156
156
  // wait till response come back
157
157
  value.on('response', function(response) {
158
158
  value.pause();
@@ -192,22 +192,23 @@ FormData.prototype._multiPartHeader = function(field, value, options) {
192
192
 
193
193
  var header;
194
194
  for (var prop in headers) {
195
- if (!headers.hasOwnProperty(prop)) continue;
196
- header = headers[prop];
195
+ if (Object.prototype.hasOwnProperty.call(headers, prop)) {
196
+ header = headers[prop];
197
197
 
198
- // skip nullish headers.
199
- if (header == null) {
200
- continue;
201
- }
198
+ // skip nullish headers.
199
+ if (header == null) {
200
+ continue;
201
+ }
202
202
 
203
- // convert all headers to arrays.
204
- if (!Array.isArray(header)) {
205
- header = [header];
206
- }
203
+ // convert all headers to arrays.
204
+ if (!Array.isArray(header)) {
205
+ header = [header];
206
+ }
207
207
 
208
- // add non-empty headers.
209
- if (header.length) {
210
- contents += prop + ': ' + header.join('; ') + FormData.LINE_BREAK;
208
+ // add non-empty headers.
209
+ if (header.length) {
210
+ contents += prop + ': ' + header.join('; ') + FormData.LINE_BREAK;
211
+ }
211
212
  }
212
213
  }
213
214
 
@@ -228,7 +229,7 @@ FormData.prototype._getContentDisposition = function(value, options) {
228
229
  // formidable and the browser add a name property
229
230
  // fs- and request- streams have path property
230
231
  filename = path.basename(options.filename || value.name || value.path);
231
- } else if (value.readable && value.hasOwnProperty('httpVersion')) {
232
+ } else if (value.readable && Object.prototype.hasOwnProperty.call(value, 'httpVersion')) {
232
233
  // or try http response
233
234
  filename = path.basename(value.client._httpMessage.path || '');
234
235
  }
@@ -256,7 +257,7 @@ FormData.prototype._getContentType = function(value, options) {
256
257
  }
257
258
 
258
259
  // or if it's http-reponse
259
- if (!contentType && value.readable && value.hasOwnProperty('httpVersion')) {
260
+ if (!contentType && value.readable && Object.prototype.hasOwnProperty.call(value, 'httpVersion')) {
260
261
  contentType = value.headers['content-type'];
261
262
  }
262
263
 
@@ -297,7 +298,7 @@ FormData.prototype.getHeaders = function(userHeaders) {
297
298
  };
298
299
 
299
300
  for (header in userHeaders) {
300
- if (userHeaders.hasOwnProperty(header)) {
301
+ if (Object.prototype.hasOwnProperty.call(userHeaders, header)) {
301
302
  formHeaders[header.toLowerCase()] = userHeaders[header];
302
303
  }
303
304
  }
@@ -496,3 +497,4 @@ FormData.prototype._error = function(err) {
496
497
  FormData.prototype.toString = function () {
497
498
  return '[object FormData]';
498
499
  };
500
+ 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": "3.0.2",
5
+ "version": "3.0.3",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git://github.com/form-data/form-data.git"
@@ -43,29 +43,30 @@
43
43
  "dependencies": {
44
44
  "asynckit": "^0.4.0",
45
45
  "combined-stream": "^1.0.8",
46
- "mime-types": "^2.1.12"
46
+ "es-set-tostringtag": "^2.1.0",
47
+ "mime-types": "^2.1.35"
47
48
  },
48
49
  "devDependencies": {
49
- "@types/node": "^12.0.10",
50
- "browserify": "^13.1.1",
50
+ "@types/node": "^12.20.55",
51
+ "browserify": "^13.3.0",
51
52
  "browserify-istanbul": "^2.0.0",
52
- "coveralls": "^3.0.4",
53
- "cross-spawn": "^6.0.5",
54
- "eslint": "^6.0.1",
53
+ "coveralls": "^3.1.1",
54
+ "cross-spawn": "^6.0.6",
55
+ "eslint": "^6.8.0",
55
56
  "fake": "^0.2.2",
56
57
  "far": "^0.0.7",
57
- "formidable": "^1.0.17",
58
- "in-publish": "^2.0.0",
58
+ "formidable": "^1.2.6",
59
+ "in-publish": "^2.0.1",
59
60
  "is-node-modern": "^1.0.0",
60
61
  "istanbul": "^0.4.5",
61
62
  "obake": "^0.1.2",
62
- "puppeteer": "^1.19.0",
63
- "pkgfiles": "^2.3.0",
64
- "pre-commit": "^1.1.3",
65
- "request": "^2.88.0",
63
+ "pkgfiles": "^2.3.2",
64
+ "pre-commit": "^1.2.2",
65
+ "puppeteer": "^1.20.0",
66
+ "request": "~2.87.0",
66
67
  "rimraf": "^2.7.1",
67
- "tape": "^4.6.2",
68
- "typescript": "^3.5.2"
68
+ "tape": "^5.9.0",
69
+ "typescript": "^3.9.10"
69
70
  },
70
71
  "license": "MIT"
71
72
  }
@@ -0,0 +1,5 @@
1
+ {
2
+ "root": true,
3
+
4
+ "extends": "@ljharb",
5
+ }
@@ -0,0 +1,12 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: [ljharb]
4
+ patreon: # Replace with a single Patreon username
5
+ open_collective: # Replace with a single Open Collective username
6
+ ko_fi: # Replace with a single Ko-fi username
7
+ tidelift: npm/has-tostringtag
8
+ community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay: # Replace with a single Liberapay username
10
+ issuehunt: # Replace with a single IssueHunt username
11
+ otechie: # Replace with a single Otechie username
12
+ custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
@@ -0,0 +1,13 @@
1
+ {
2
+ "all": true,
3
+ "check-coverage": false,
4
+ "reporter": ["text-summary", "text", "html", "json"],
5
+ "lines": 86,
6
+ "statements": 85.93,
7
+ "functions": 82.43,
8
+ "branches": 76.06,
9
+ "exclude": [
10
+ "coverage",
11
+ "test"
12
+ ]
13
+ }
@@ -0,0 +1,42 @@
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
+ ## [v1.0.2](https://github.com/inspect-js/has-tostringtag/compare/v1.0.1...v1.0.2) - 2024-02-01
9
+
10
+ ### Fixed
11
+
12
+ - [Fix] move `has-symbols` back to prod deps [`#3`](https://github.com/inspect-js/has-tostringtag/issues/3)
13
+
14
+ ## [v1.0.1](https://github.com/inspect-js/has-tostringtag/compare/v1.0.0...v1.0.1) - 2024-02-01
15
+
16
+ ### Commits
17
+
18
+ - [patch] add types [`9276414`](https://github.com/inspect-js/has-tostringtag/commit/9276414b22fab3eeb234688841722c4be113201f)
19
+ - [meta] use `npmignore` to autogenerate an npmignore file [`5c0dcd1`](https://github.com/inspect-js/has-tostringtag/commit/5c0dcd1ff66419562a30d1fd88b966cc36bce5fc)
20
+ - [actions] reuse common workflows [`dee9509`](https://github.com/inspect-js/has-tostringtag/commit/dee950904ab5719b62cf8d73d2ac950b09093266)
21
+ - [actions] update codecov uploader [`b8cb3a0`](https://github.com/inspect-js/has-tostringtag/commit/b8cb3a0b8ffbb1593012c4c2daa45fb25642825d)
22
+ - [Tests] generate coverage [`be5b288`](https://github.com/inspect-js/has-tostringtag/commit/be5b28889e2735cdbcef387f84c2829995f2f05e)
23
+ - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `tape` [`69a0827`](https://github.com/inspect-js/has-tostringtag/commit/69a0827974e9b877b2c75b70b057555da8f25a65)
24
+ - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`4c9e210`](https://github.com/inspect-js/has-tostringtag/commit/4c9e210a5682f0557a3235d36b68ce809d7fb825)
25
+ - [actions] update rebase action to use reusable workflow [`ca8dcd3`](https://github.com/inspect-js/has-tostringtag/commit/ca8dcd3a6f3f5805d7e3fd461b654aedba0946e7)
26
+ - [Dev Deps] update `@ljharb/eslint-config`, `aud`, `npmignore`, `tape` [`07f3eaf`](https://github.com/inspect-js/has-tostringtag/commit/07f3eafa45dd98208c94479737da77f9a69b94c4)
27
+ - [Deps] update `has-symbols` [`999e009`](https://github.com/inspect-js/has-tostringtag/commit/999e0095a7d1749a58f55472ec8bf8108cdfdcf3)
28
+ - [Tests] remove staging tests since they fail on modern node [`9d9526b`](https://github.com/inspect-js/has-tostringtag/commit/9d9526b1dc1ca7f2292b52efda4c3d857b0e39bd)
29
+
30
+ ## v1.0.0 - 2021-08-05
31
+
32
+ ### Commits
33
+
34
+ - Tests [`6b6f573`](https://github.com/inspect-js/has-tostringtag/commit/6b6f5734dc2058badb300ff0783efdad95fe1a65)
35
+ - Initial commit [`2f8190e`](https://github.com/inspect-js/has-tostringtag/commit/2f8190e799fac32ba9b95a076c0255e01d7ce475)
36
+ - [meta] do not publish github action workflow files [`6e08cc4`](https://github.com/inspect-js/has-tostringtag/commit/6e08cc4e0fea7ec71ef66e70734b2af2c4a8b71b)
37
+ - readme [`94bed6c`](https://github.com/inspect-js/has-tostringtag/commit/94bed6c9560cbbfda034f8d6c260bb7b0db33c1a)
38
+ - npm init [`be67840`](https://github.com/inspect-js/has-tostringtag/commit/be67840ab92ee7adb98bcc65261975543f815fa5)
39
+ - Implementation [`c4914ec`](https://github.com/inspect-js/has-tostringtag/commit/c4914ecc51ddee692c85b471ae0a5d8123030fbf)
40
+ - [meta] use `auto-changelog` [`4aaf768`](https://github.com/inspect-js/has-tostringtag/commit/4aaf76895ae01d7b739f2b19f967ef2372506cd7)
41
+ - Only apps should have lockfiles [`bc4d99e`](https://github.com/inspect-js/has-tostringtag/commit/bc4d99e4bf494afbaa235c5f098df6e642edf724)
42
+ - [meta] add `safe-publish-latest` [`6523c05`](https://github.com/inspect-js/has-tostringtag/commit/6523c05c9b87140f3ae74c9daf91633dd9ff4e1f)
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Inspect JS
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,46 @@
1
+ # has-tostringtag <sup>[![Version Badge][2]][1]</sup>
2
+
3
+ [![github actions][actions-image]][actions-url]
4
+ [![coverage][codecov-image]][codecov-url]
5
+ [![dependency status][5]][6]
6
+ [![dev dependency status][7]][8]
7
+ [![License][license-image]][license-url]
8
+ [![Downloads][downloads-image]][downloads-url]
9
+
10
+ [![npm badge][11]][1]
11
+
12
+ Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.
13
+
14
+ ## Example
15
+
16
+ ```js
17
+ var hasSymbolToStringTag = require('has-tostringtag');
18
+
19
+ hasSymbolToStringTag() === true; // if the environment has native Symbol.toStringTag support. Not polyfillable, not forgeable.
20
+
21
+ var hasSymbolToStringTagKinda = require('has-tostringtag/shams');
22
+ hasSymbolToStringTagKinda() === true; // if the environment has a Symbol.toStringTag sham that mostly follows the spec.
23
+ ```
24
+
25
+ ## Supported Symbol shams
26
+ - get-own-property-symbols [npm](https://www.npmjs.com/package/get-own-property-symbols) | [github](https://github.com/WebReflection/get-own-property-symbols)
27
+ - core-js [npm](https://www.npmjs.com/package/core-js) | [github](https://github.com/zloirock/core-js)
28
+
29
+ ## Tests
30
+ Simply clone the repo, `npm install`, and run `npm test`
31
+
32
+ [1]: https://npmjs.org/package/has-tostringtag
33
+ [2]: https://versionbadg.es/inspect-js/has-tostringtag.svg
34
+ [5]: https://david-dm.org/inspect-js/has-tostringtag.svg
35
+ [6]: https://david-dm.org/inspect-js/has-tostringtag
36
+ [7]: https://david-dm.org/inspect-js/has-tostringtag/dev-status.svg
37
+ [8]: https://david-dm.org/inspect-js/has-tostringtag#info=devDependencies
38
+ [11]: https://nodei.co/npm/has-tostringtag.png?downloads=true&stars=true
39
+ [license-image]: https://img.shields.io/npm/l/has-tostringtag.svg
40
+ [license-url]: LICENSE
41
+ [downloads-image]: https://img.shields.io/npm/dm/has-tostringtag.svg
42
+ [downloads-url]: https://npm-stat.com/charts.html?package=has-tostringtag
43
+ [codecov-image]: https://codecov.io/gh/inspect-js/has-tostringtag/branch/main/graphs/badge.svg
44
+ [codecov-url]: https://app.codecov.io/gh/inspect-js/has-tostringtag/
45
+ [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-tostringtag
46
+ [actions-url]: https://github.com/inspect-js/has-tostringtag/actions
@@ -0,0 +1,3 @@
1
+ declare function hasToStringTag(): boolean;
2
+
3
+ export = hasToStringTag;
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var hasSymbols = require('has-symbols');
4
+
5
+ /** @type {import('.')} */
6
+ module.exports = function hasToStringTag() {
7
+ return hasSymbols() && typeof Symbol.toStringTag === 'symbol';
8
+ };
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "has-tostringtag",
3
+ "version": "1.0.2",
4
+ "author": {
5
+ "name": "Jordan Harband",
6
+ "email": "ljharb@gmail.com",
7
+ "url": "http://ljharb.codes"
8
+ },
9
+ "funding": {
10
+ "url": "https://github.com/sponsors/ljharb"
11
+ },
12
+ "contributors": [
13
+ {
14
+ "name": "Jordan Harband",
15
+ "email": "ljharb@gmail.com",
16
+ "url": "http://ljharb.codes"
17
+ }
18
+ ],
19
+ "description": "Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.",
20
+ "license": "MIT",
21
+ "main": "index.js",
22
+ "types": "./index.d.ts",
23
+ "exports": {
24
+ ".": [
25
+ {
26
+ "types": "./index.d.ts",
27
+ "default": "./index.js"
28
+ },
29
+ "./index.js"
30
+ ],
31
+ "./shams": [
32
+ {
33
+ "types": "./shams.d.ts",
34
+ "default": "./shams.js"
35
+ },
36
+ "./shams.js"
37
+ ],
38
+ "./package.json": "./package.json"
39
+ },
40
+ "scripts": {
41
+ "prepack": "npmignore --auto --commentLines=autogenerated",
42
+ "prepublishOnly": "safe-publish-latest",
43
+ "prepublish": "not-in-publish || npm run prepublishOnly",
44
+ "pretest": "npm run --silent lint",
45
+ "test": "npm run tests-only",
46
+ "posttest": "aud --production",
47
+ "tests-only": "npm run test:stock && npm run test:shams",
48
+ "test:stock": "nyc node test",
49
+ "test:staging": "nyc node --harmony --es-staging test",
50
+ "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",
51
+ "test:shams:corejs": "nyc node test/shams/core-js.js",
52
+ "test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js",
53
+ "lint": "eslint --ext=js,mjs .",
54
+ "version": "auto-changelog && git add CHANGELOG.md",
55
+ "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
56
+ },
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "git+https://github.com/inspect-js/has-tostringtag.git"
60
+ },
61
+ "bugs": {
62
+ "url": "https://github.com/inspect-js/has-tostringtag/issues"
63
+ },
64
+ "homepage": "https://github.com/inspect-js/has-tostringtag#readme",
65
+ "keywords": [
66
+ "javascript",
67
+ "ecmascript",
68
+ "symbol",
69
+ "symbols",
70
+ "tostringtag",
71
+ "Symbol.toStringTag"
72
+ ],
73
+ "devDependencies": {
74
+ "@ljharb/eslint-config": "^21.1.0",
75
+ "@types/has-symbols": "^1.0.2",
76
+ "@types/tape": "^5.6.4",
77
+ "aud": "^2.0.4",
78
+ "auto-changelog": "^2.4.0",
79
+ "core-js": "^2.6.12",
80
+ "eslint": "=8.8.0",
81
+ "get-own-property-symbols": "^0.9.5",
82
+ "in-publish": "^2.0.1",
83
+ "npmignore": "^0.3.1",
84
+ "nyc": "^10.3.2",
85
+ "safe-publish-latest": "^2.0.0",
86
+ "tape": "^5.7.4",
87
+ "typescript": "next"
88
+ },
89
+ "engines": {
90
+ "node": ">= 0.4"
91
+ },
92
+ "auto-changelog": {
93
+ "output": "CHANGELOG.md",
94
+ "template": "keepachangelog",
95
+ "unreleased": false,
96
+ "commitLimit": false,
97
+ "backfillLimit": false,
98
+ "hideCredit": true
99
+ },
100
+ "publishConfig": {
101
+ "ignore": [
102
+ ".github/workflows"
103
+ ]
104
+ },
105
+ "dependencies": {
106
+ "has-symbols": "^1.0.3"
107
+ }
108
+ }
@@ -0,0 +1,3 @@
1
+ declare function hasToStringTagShams(): boolean;
2
+
3
+ export = hasToStringTagShams;
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ var hasSymbols = require('has-symbols/shams');
4
+
5
+ /** @type {import('.')} */
6
+ module.exports = function hasToStringTagShams() {
7
+ return hasSymbols() && !!Symbol.toStringTag;
8
+ };
@@ -0,0 +1,21 @@
1
+ 'use strict';
2
+
3
+ var test = require('tape');
4
+ var hasSymbolToStringTag = require('../');
5
+ var runSymbolTests = require('./tests');
6
+
7
+ test('interface', function (t) {
8
+ t.equal(typeof hasSymbolToStringTag, 'function', 'is a function');
9
+ t.equal(typeof hasSymbolToStringTag(), 'boolean', 'returns a boolean');
10
+ t.end();
11
+ });
12
+
13
+ test('Symbol.toStringTag exists', { skip: !hasSymbolToStringTag() }, function (t) {
14
+ runSymbolTests(t);
15
+ t.end();
16
+ });
17
+
18
+ test('Symbol.toStringTag does not exist', { skip: hasSymbolToStringTag() }, function (t) {
19
+ t.equal(typeof Symbol === 'undefined' ? 'undefined' : typeof Symbol.toStringTag, 'undefined', 'global Symbol.toStringTag is undefined');
20
+ t.end();
21
+ });