New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

array.prototype.values

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array.prototype.values - npm Package Compare versions

Comparing version

to
1.0.1

.nycrc

20

CHANGELOG.md

@@ -8,6 +8,22 @@ # Changelog

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
## [v1.0.1](https://github.com/es-shims/Array.prototype.values/compare/v1.0.0...v1.0.1) - 2020-11-17
## v1.0.0 - 2020-01-22
### Commits
- [Tests] migrate tests to Github Actions [`2b621a9`](https://github.com/es-shims/Array.prototype.values/commit/2b621a9d75fefab2fee196d06ac3dca5ccb1502a)
- [meta] do not publish github action workflow files [`3708449`](https://github.com/es-shims/Array.prototype.values/commit/370844950737af4dccdf86617461c5adc082f3e2)
- [Tests] fix ESM tests [`7c3eb4e`](https://github.com/es-shims/Array.prototype.values/commit/7c3eb4e11c2bab5f629b7001d28966c0a3d98785)
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`efc1360`](https://github.com/es-shims/Array.prototype.values/commit/efc1360a65f2b238d6117ac6a5be9f0ca3645b6f)
- [Deps] update `es-abstract`; use `call-bind` where applicable [`4d16a43`](https://github.com/es-shims/Array.prototype.values/commit/4d16a43ace11c59bd555a25e0ef58517cf7edf00)
- [Tests] run `nyc` on all tests [`e7423a5`](https://github.com/es-shims/Array.prototype.values/commit/e7423a59405bf35aadd80f4c049dd61989057862)
- [actions] add "Allow Edits" workflow [`5d1329f`](https://github.com/es-shims/Array.prototype.values/commit/5d1329f7e619f2c430c2266fcb1b3ac7efb6d880)
- [Dev Deps] update `auto-changelog`, `tape` [`0b40bd7`](https://github.com/es-shims/Array.prototype.values/commit/0b40bd73ec6a78f927862261eea253b1dafb3d93)
- [Dev Deps] update `@ljharb/eslint-config` [`572f6c4`](https://github.com/es-shims/Array.prototype.values/commit/572f6c43372708ea66333b69e34e8103204d025c)
- [Dev Deps] update `aud`, `auto-changelog` [`82ab9c3`](https://github.com/es-shims/Array.prototype.values/commit/82ab9c3646c01ba87e7477f47938a5568f88c03c)
- [Tests] only audit prod deps [`357ca4d`](https://github.com/es-shims/Array.prototype.values/commit/357ca4de45e92f2322e60814c190397b768dfe17)
- [actions] switch Automatic Rebase workflow to `pull_request_target` event [`61160a7`](https://github.com/es-shims/Array.prototype.values/commit/61160a72d132876008d68b5a7008037bc2aa65e8)
- [Deps] update `es-abstract` [`ffbdcab`](https://github.com/es-shims/Array.prototype.values/commit/ffbdcab964c8687146fa406b8f9e9a26c47df910)
## v1.0.0 - 2020-01-21
### Commits

@@ -14,0 +30,0 @@

2

implementation.js
'use strict';
var CreateArrayIterator = require('es-create-array-iterator');
var ToObject = require('es-abstract/2019/ToObject');
var ToObject = require('es-abstract/2020/ToObject');

@@ -6,0 +6,0 @@ module.exports = function values() {

'use strict';
var define = require('define-properties');
var callBind = require('es-abstract/helpers/callBind');
var RequireObjectCoercible = require('es-abstract/2019/RequireObjectCoercible');
var callBind = require('call-bind');
var RequireObjectCoercible = require('es-abstract/2020/RequireObjectCoercible');

@@ -7,0 +7,0 @@ var implementation = require('./implementation');

{
"name": "array.prototype.values",
"version": "1.0.0",
"version": "1.0.1",
"description": "An ES2015 spec-compliant `Array.prototype.values` shim/polyfill/replacement that works as far down as ES3.",

@@ -47,7 +47,7 @@ "main": "index.js",

"prelint": "evalmd README.md",
"lint": "eslint .",
"tests-only": "tape 'test/*.js'",
"tests-esm": "node test/index.mjs",
"test": "npm run tests-only",
"posttest": "npx aud",
"lint": "eslint --ext=js,mjs .",
"tests-only": "nyc tape 'test/*.js'",
"tests-esm": "nyc node test/index.mjs",
"test": "npm run tests-only && npm run tests-esm",
"posttest": "npx aud --production",
"version": "auto-changelog && git add CHANGELOG.md",

@@ -84,5 +84,6 @@ "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""

"devDependencies": {
"@ljharb/eslint-config": "^15.1.0",
"auto-changelog": "^1.16.2",
"eslint": "^6.8.0",
"@ljharb/eslint-config": "^17.2.0",
"aud": "^1.1.3",
"auto-changelog": "^2.2.1",
"eslint": "^7.13.0",
"evalmd": "^0.0.19",

@@ -93,10 +94,11 @@ "function-bind": "^1.1.1",

"iterate-iterator": "^1.0.1",
"nyc": "^10.3.2",
"safe-publish-latest": "^1.1.4",
"tape": "^5.0.0-next.4"
"tape": "^5.0.1"
},
"dependencies": {
"call-bind": "^1.0.0",
"define-properties": "^1.1.3",
"es-abstract": "^1.17.4",
"es-abstract": "^1.18.0-next.1",
"es-create-array-iterator": "^1.0.0",
"functions-have-names": "^1.2.1",
"has-symbols": "^1.0.1"

@@ -112,4 +114,5 @@ },

"commitLimit": false,
"backfillLimit": false
"backfillLimit": false,
"hideCredit": true
}
}

@@ -23,3 +23,3 @@ 'use strict';

if (method && method.name !== 'values') {
var callBind = require('es-abstract/helpers/callBind');
var callBind = require('call-bind');
var $original = callBind(method);

@@ -26,0 +26,0 @@ return function values() {

'use strict';
var values = require('../implementation');
var callBind = require('es-abstract/helpers/callBind');
var callBind = require('call-bind');
var test = require('tape');

@@ -6,0 +6,0 @@ var hasStrictMode = require('has-strict-mode')();

@@ -7,3 +7,3 @@ 'use strict';

var defineProperties = require('define-properties');
var callBind = require('es-abstract/helpers/callBind');
var callBind = require('call-bind');

@@ -10,0 +10,0 @@ var isEnumerable = Object.prototype.propertyIsEnumerable;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet