Comparing version 1.1.2 to 1.1.3
@@ -8,2 +8,13 @@ # Changelog | ||
## [v1.1.3](https://github.com/inspect-js/is-regex/compare/v1.1.2...v1.1.3) - 2021-05-07 | ||
### Commits | ||
- [actions] use `node/install` instead of `node/run`; use `codecov` action [`c681ab9`](https://github.com/inspect-js/is-regex/commit/c681ab99c07f8b3b7ae5f652b3105a30bce94f69) | ||
- [Fix] do not use `Object.prototype.toString` when `Symbol.toStringTag` is shammed [`ca019fd`](https://github.com/inspect-js/is-regex/commit/ca019fdb828dc7d32e323213403ac9995d8604e3) | ||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `tape` [`605a66f`](https://github.com/inspect-js/is-regex/commit/605a66f278900f1c8ae9d1dfcec31e5f61b10ad3) | ||
- [readme] add actions and codecov badges [`8d7c6f0`](https://github.com/inspect-js/is-regex/commit/8d7c6f0e007bd982f21b958e0abc98b8a84e2a24) | ||
- [meta] use `prepublishOnly` script for npm 7+ [`8e50e91`](https://github.com/inspect-js/is-regex/commit/8e50e91f51aa5038745526710ef2e030527982a7) | ||
- [Deps] update `has-symbols` [`4742c81`](https://github.com/inspect-js/is-regex/commit/4742c81260c3db9a8c9ef57110981fb6175f58e0) | ||
## [v1.1.2](https://github.com/inspect-js/is-regex/compare/v1.1.1...v1.1.2) - 2021-02-01 | ||
@@ -10,0 +21,0 @@ |
'use strict'; | ||
var callBound = require('call-bind/callBound'); | ||
var hasSymbols = require('has-symbols')(); | ||
var hasToStringTag = hasSymbols && typeof Symbol.toStringTag === 'symbol'; | ||
var hasSymbols = require('has-symbols/shams')(); | ||
var hasToStringTag = hasSymbols && !!Symbol.toStringTag; | ||
var has; | ||
@@ -7,0 +7,0 @@ var $exec; |
{ | ||
"name": "is-regex", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag", | ||
@@ -12,3 +12,4 @@ "author": "Jordan Harband <ljharb@gmail.com>", | ||
"scripts": { | ||
"prepublish": "safe-publish-latest", | ||
"prepublishOnly": "safe-publish-latest", | ||
"prepublish": "not-in-publish || npm run prepublishOnly", | ||
"pretest": "npm run lint", | ||
@@ -18,2 +19,3 @@ "test": "npm run tests-only && npm run test:harmony", | ||
"test:harmony": "nyc node --harmony --es-staging test", | ||
"test:corejs": "nyc tape test-corejs.js", | ||
"posttest": "npx aud --production", | ||
@@ -43,17 +45,18 @@ "lint": "eslint .", | ||
"call-bind": "^1.0.2", | ||
"has-symbols": "^1.0.1" | ||
"has-symbols": "^1.0.2" | ||
}, | ||
"devDependencies": { | ||
"@ljharb/eslint-config": "^17.5.0", | ||
"aud": "^1.1.3", | ||
"@ljharb/eslint-config": "^17.6.0", | ||
"aud": "^1.1.5", | ||
"auto-changelog": "^2.2.1", | ||
"core-js": "^3.12.0", | ||
"eclint": "^2.8.1", | ||
"eslint": "^7.19.0", | ||
"eslint": "^7.26.0", | ||
"foreach": "^2.0.5", | ||
"nyc": "^10.3.2", | ||
"safe-publish-latest": "^1.1.4", | ||
"tape": "^5.1.1" | ||
"tape": "^5.2.2" | ||
}, | ||
"testling": { | ||
"files": "test.js", | ||
"files": "test/index.js", | ||
"browsers": [ | ||
@@ -67,4 +70,3 @@ "iexplore/6.0..latest", | ||
"chrome/canary", | ||
"opera/10.0..12.0", | ||
"opera/15.0..latest", | ||
"opera/10.0..latest", | ||
"opera/next", | ||
@@ -71,0 +73,0 @@ "safari/4.0..latest", |
# is-regex <sup>[![Version Badge][2]][1]</sup> | ||
[![github actions][actions-image]][actions-url] | ||
[![coverage][codecov-image]][codecov-url] | ||
[![dependency status][5]][6] | ||
@@ -47,2 +49,5 @@ [![dev dependency status][7]][8] | ||
[downloads-url]: https://npm-stat.com/charts.html?package=is-regex | ||
[codecov-image]: https://codecov.io/gh/inspect-js/is-regex/branch/main/graphs/badge.svg | ||
[codecov-url]: https://app.codecov.io/gh/inspect-js/is-regex/ | ||
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-regex | ||
[actions-url]: https://github.com/inspect-js/is-regex/actions |
'use strict'; | ||
var hasSymbols = require('has-symbols')(); | ||
var hasToStringTag = hasSymbols && typeof Symbol.toStringTag === 'symbol'; | ||
var hasSymbols = require('has-symbols/shams')(); | ||
var hasToStringTag = hasSymbols && !!Symbol.toStringTag; | ||
var forEach = require('foreach'); | ||
@@ -6,0 +6,0 @@ var test = require('tape'); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29761
53
10
Updatedhas-symbols@^1.0.2