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.2

.eslintignore

24

CHANGELOG.md

@@ -8,2 +8,26 @@ # Changelog

## [v1.0.2](https://github.com/es-shims/Array.prototype.values/compare/v1.0.1...v1.0.2) - 2021-10-01
### Commits
- [actions] use `node/install` instead of `node/run`; use `codecov` action [`d5b3942`](https://github.com/es-shims/Array.prototype.values/commit/d5b3942ee699613e322c2f5c40835066b8b74d1a)
- [Refactor] remove ESM entry points [`89a6312`](https://github.com/es-shims/Array.prototype.values/commit/89a631267000d21b4ee65c40c33c3cbef9896c51)
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `functions-have-names`, `has-strict-mode`, `tape` [`1abf95c`](https://github.com/es-shims/Array.prototype.values/commit/1abf95ca3bc45d2bdaeedaf88efed235d3d1fded)
- [actions] update workflows [`45b2a7f`](https://github.com/es-shims/Array.prototype.values/commit/45b2a7f9796c9fecd84ae6b4864b2394aa4894e4)
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `tape` [`52ef45a`](https://github.com/es-shims/Array.prototype.values/commit/52ef45aaa08a701298b4fef7610610d6f4ecebd3)
- [Deps] update `es-abstract`, `es-create-array-iterator` [`ad5bde2`](https://github.com/es-shims/Array.prototype.values/commit/ad5bde24bba96c99408bbeb7a673a5967e80f0ec)
- [actions] update workflows [`2973f6e`](https://github.com/es-shims/Array.prototype.values/commit/2973f6e0ebbb01630093f6ff9cf2327e5656368e)
- [readme] add github actions/codecov badges [`9f9fde0`](https://github.com/es-shims/Array.prototype.values/commit/9f9fde06d623d8d69ce896ab2941bf2a9006b1e3)
- [Deps] update `call-bind`, `es-abstract`, `es-create-array-iterator` [`dbb2d49`](https://github.com/es-shims/Array.prototype.values/commit/dbb2d49caf35ab917e924ebe6dfc96b32d262d3f)
- [readme] remove travis badge [`57ae3ed`](https://github.com/es-shims/Array.prototype.values/commit/57ae3ed39a670a1140fe81a04a0822e06079ebb7)
- [Dev Deps] update `@ljharb/eslint-config`, `iterate-iterator` [`c8c3739`](https://github.com/es-shims/Array.prototype.values/commit/c8c37397051c8e40c308b3417eaef1bff0abf584)
- [Deps] update `es-abstract`, `has-symbols` [`1da3085`](https://github.com/es-shims/Array.prototype.values/commit/1da30856a04a9872c8abb26408f0f97af41913e3)
- [Dev Deps] update `eslint`, `tape` [`9205b07`](https://github.com/es-shims/Array.prototype.values/commit/9205b075a1bb2b8641c3a8bc4659d0da33ebe23f)
- [meta] use `prepublishOnly` script for npm 7+ [`56c76a4`](https://github.com/es-shims/Array.prototype.values/commit/56c76a4b806b5170b6aac644fa24d351be3f15e6)
- [Tests] add `@es-shims/api` [`230ee87`](https://github.com/es-shims/Array.prototype.values/commit/230ee87e95fa013f2bf2e4c7e6e1e3076b349da6)
- [Deps] update `es-abstract` [`7a4101d`](https://github.com/es-shims/Array.prototype.values/commit/7a4101df992b48280d9bab1d7d4ccf9969ede2e8)
- [Tests] increase coverage [`903ee4e`](https://github.com/es-shims/Array.prototype.values/commit/903ee4e4c920df9e346f268869056ae0d421c1ad)
- [Fix] add `auto` entry point to "exports" [`7f854b4`](https://github.com/es-shims/Array.prototype.values/commit/7f854b46202b606f83c20eb8cb234c6989f5b50e)
- [actions] update workflows [`04067ff`](https://github.com/es-shims/Array.prototype.values/commit/04067ff316c69987774d88e29f2a7341f1121623)
## [v1.0.1](https://github.com/es-shims/Array.prototype.values/compare/v1.0.0...v1.0.1) - 2020-11-17

@@ -10,0 +34,0 @@

2

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

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

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

var callBind = require('call-bind');
var RequireObjectCoercible = require('es-abstract/2020/RequireObjectCoercible');
var RequireObjectCoercible = require('es-abstract/2021/RequireObjectCoercible');

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

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

@@ -16,26 +16,6 @@ "main": "index.js",

],
"./polyfill": [
{
"import": "./polyfill.mjs",
"require": "./polyfill.js",
"default": "./polyfill.js"
},
"./polyfill.js"
],
"./implementation": [
{
"import": "./implementation.mjs",
"require": "./implementation.js",
"default": "./implementation.js"
},
"./implementation.js"
],
"./shim": [
{
"import": "./shim.mjs",
"require": "./shim.js",
"default": "./shim.js"
},
"./shim.js"
],
"./auto": "./auto.js",
"./polyfill": "./polyfill.js",
"./implementation": "./implementation.js",
"./shim": "./shim.js",
"./package": "./package.json",

@@ -45,6 +25,8 @@ "./package.json": "./package.json"

"scripts": {
"prepublish": "safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"prepublishOnly": "safe-publish-latest",
"pretest": "npm run lint",
"prelint": "evalmd README.md",
"lint": "eslint --ext=js,mjs .",
"postlint": "es-shim-api --bound",
"tests-only": "nyc tape 'test/*.js'",

@@ -85,21 +67,22 @@ "tests-esm": "nyc node test/index.mjs",

"devDependencies": {
"@ljharb/eslint-config": "^17.2.0",
"aud": "^1.1.3",
"auto-changelog": "^2.2.1",
"eslint": "^7.13.0",
"@es-shims/api": "^2.2.1",
"@ljharb/eslint-config": "^18.0.0",
"aud": "^1.1.5",
"auto-changelog": "^2.3.0",
"eslint": "^7.32.0",
"evalmd": "^0.0.19",
"function-bind": "^1.1.1",
"functions-have-names": "^1.2.1",
"has-strict-mode": "^1.0.0",
"iterate-iterator": "^1.0.1",
"functions-have-names": "^1.2.2",
"has-strict-mode": "^1.0.1",
"iterate-iterator": "^1.0.2",
"nyc": "^10.3.2",
"safe-publish-latest": "^1.1.4",
"tape": "^5.0.1"
"tape": "^5.3.1"
},
"dependencies": {
"call-bind": "^1.0.0",
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
"es-abstract": "^1.18.0-next.1",
"es-create-array-iterator": "^1.0.0",
"has-symbols": "^1.0.1"
"es-abstract": "^1.19.0",
"es-create-array-iterator": "^1.0.3",
"has-symbols": "^1.0.2"
},

@@ -106,0 +89,0 @@ "testling": {

# array.prototype.values <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
[![Build Status][travis-svg]][travis-url]
[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![dependency status][deps-svg]][deps-url]

@@ -56,5 +57,3 @@ [![dev dependency status][dev-deps-svg]][dev-deps-url]

[package-url]: https://npmjs.org/package/array.prototype.values
[npm-version-svg]: http://versionbadg.es/es-shims/Array.prototype.values.svg
[travis-svg]: https://travis-ci.org/es-shims/Array.prototype.values.svg
[travis-url]: https://travis-ci.org/es-shims/Array.prototype.values
[npm-version-svg]: https://versionbadg.es/es-shims/Array.prototype.values.svg
[deps-svg]: https://david-dm.org/es-shims/Array.prototype.values.svg

@@ -69,1 +68,5 @@ [deps-url]: https://david-dm.org/es-shims/Array.prototype.values

[downloads-url]: https://npm-stat.com/charts.html?package=array.prototype.values
[codecov-image]: https://codecov.io/gh/es-shims/Array.prototype.values/branch/main/graphs/badge.svg
[codecov-url]: https://app.codecov.io/gh/es-shims/Array.prototype.values/
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/Array.prototype.values
[actions-url]: https://github.com/es-shims/Array.prototype.values/actions
'use strict';
require('../shim')();
require('../auto');

@@ -5,0 +5,0 @@ var test = require('tape');

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet