string.prototype.trim
Advanced tools
Comparing version 1.2.2 to 1.2.3
@@ -8,2 +8,11 @@ # Changelog | ||
## [v1.2.3](https://github.com/es-shims/String.prototype.trim/compare/v1.2.2...v1.2.3) - 2020-11-21 | ||
### Commits | ||
- [Tests] migrate tests to Github Actions [`6768c8d`](https://github.com/es-shims/String.prototype.trim/commit/6768c8d5569a6fcc841436b98a19ddf6b63c7de4) | ||
- [Tests] run `nyc` on all tests [`2fd5baa`](https://github.com/es-shims/String.prototype.trim/commit/2fd5baa7239a4d449338e0333e2dc4573597962e) | ||
- [Deps] update `es-abstract`; use `call-bind` where applicable [`e4e8c6e`](https://github.com/es-shims/String.prototype.trim/commit/e4e8c6ede423ee8c384564092f624f980097bb28) | ||
- [Dev Deps] update `eslint`, `aud`, `auto-changelog` [`a21c1d5`](https://github.com/es-shims/String.prototype.trim/commit/a21c1d5c87ec9b1b5107b0a1faf138993951081c) | ||
## [v1.2.2](https://github.com/es-shims/String.prototype.trim/compare/v1.2.1...v1.2.2) - 2020-09-15 | ||
@@ -10,0 +19,0 @@ |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var ToString = require('es-abstract/2020/ToString'); | ||
var callBound = require('es-abstract/helpers/callBound'); | ||
var callBound = require('call-bind/callBound'); | ||
var $replace = callBound('String.prototype.replace'); | ||
@@ -8,0 +8,0 @@ |
'use strict'; | ||
var callBind = require('es-abstract/helpers/callBind'); | ||
var callBind = require('call-bind'); | ||
var define = require('define-properties'); | ||
@@ -5,0 +5,0 @@ |
{ | ||
"name": "string.prototype.trim", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"author": { | ||
@@ -24,8 +24,8 @@ "name": "Jordan Harband", | ||
"prepublish": "safe-publish-latest", | ||
"pretest": "npm run --silent lint && es-shim-api --bound", | ||
"test": "npm run --silent tests-only", | ||
"pretest": "npm run lint", | ||
"test": "npm run tests-only", | ||
"posttest": "npx aud --production", | ||
"tests-only": "tape 'test/*.js'", | ||
"coverage": "nyc npm run tests-only", | ||
"tests-only": "nyc tape 'test/**/*.js'", | ||
"lint": "eslint .", | ||
"postlint": "es-shim-api --bound", | ||
"version": "auto-changelog && git add CHANGELOG.md", | ||
@@ -48,4 +48,5 @@ "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" | ||
"dependencies": { | ||
"call-bind": "^1.0.0", | ||
"define-properties": "^1.1.3", | ||
"es-abstract": "^1.18.0-next.0" | ||
"es-abstract": "^1.18.0-next.1" | ||
}, | ||
@@ -55,5 +56,5 @@ "devDependencies": { | ||
"@ljharb/eslint-config": "^17.2.0", | ||
"aud": "^1.1.2", | ||
"auto-changelog": "^2.2.0", | ||
"eslint": "^7.9.0", | ||
"aud": "^1.1.3", | ||
"auto-changelog": "^2.2.1", | ||
"eslint": "^7.14.0", | ||
"functions-have-names": "^1.2.1", | ||
@@ -60,0 +61,0 @@ "has-strict-mode": "^1.0.0", |
@@ -6,3 +6,3 @@ 'use strict'; | ||
var hasStrictMode = require('has-strict-mode')(); | ||
var callBind = require('es-abstract/helpers/callBind'); | ||
var callBind = require('call-bind'); | ||
@@ -9,0 +9,0 @@ var runTests = require('./tests'); |
@@ -8,3 +8,3 @@ 'use strict'; | ||
var defineProperties = require('define-properties'); | ||
var callBind = require('es-abstract/helpers/callBind'); | ||
var callBind = require('call-bind'); | ||
var isEnumerable = Object.prototype.propertyIsEnumerable; | ||
@@ -11,0 +11,0 @@ var functionsHaveNames = require('functions-have-names')(); |
Sorry, the diff of this file is not supported yet
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
30847
23
3
+ Addedcall-bind@^1.0.0
Updatedes-abstract@^1.18.0-next.1