Update checked-in dependencies
This commit is contained in:
parent
6b0d45a5c6
commit
cc1adb825a
4247 changed files with 144820 additions and 149530 deletions
1
node_modules/array-includes/.eslintignore
generated
vendored
Normal file
1
node_modules/array-includes/.eslintignore
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
coverage/
|
||||
15
node_modules/array-includes/.github/workflows/rebase.yml
generated
vendored
15
node_modules/array-includes/.github/workflows/rebase.yml
generated
vendored
|
|
@ -1,15 +0,0 @@
|
|||
name: Automatic Rebase
|
||||
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
_:
|
||||
name: "Automatic Rebase"
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: ljharb/rebase@master
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
13
node_modules/array-includes/.nycrc
generated
vendored
Normal file
13
node_modules/array-includes/.nycrc
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"all": true,
|
||||
"check-coverage": false,
|
||||
"reporter": ["text-summary", "text", "html", "json"],
|
||||
"lines": 86,
|
||||
"statements": 85.93,
|
||||
"functions": 82.43,
|
||||
"branches": 76.06,
|
||||
"exclude": [
|
||||
"coverage",
|
||||
"test"
|
||||
]
|
||||
}
|
||||
12
node_modules/array-includes/.travis.yml
generated
vendored
12
node_modules/array-includes/.travis.yml
generated
vendored
|
|
@ -1,12 +0,0 @@
|
|||
version: ~> 1.0
|
||||
language: node_js
|
||||
os:
|
||||
- linux
|
||||
import:
|
||||
- ljharb/travis-ci:node/all.yml
|
||||
- ljharb/travis-ci:node/pretest.yml
|
||||
- ljharb/travis-ci:node/posttest.yml
|
||||
- ljharb/travis-ci:node/coverage.yml
|
||||
matrix:
|
||||
allow_failures:
|
||||
- env: COVERAGE=true
|
||||
20
node_modules/array-includes/CHANGELOG.md
generated
vendored
20
node_modules/array-includes/CHANGELOG.md
generated
vendored
|
|
@ -1,3 +1,23 @@
|
|||
3.1.3 / 2021-02-20
|
||||
=================
|
||||
* [Deps] update `call-bind`, `es-abstract`, `get-intrinsic`
|
||||
* [meta] do not publish github action workflow files
|
||||
* [meta] gitignore coverage output
|
||||
* [actions] update workflows
|
||||
* [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `functions-have-names`, `has-strict-mode`, `tape`
|
||||
* [Tests] increase coverage
|
||||
|
||||
3.1.2 / 2020-11-24
|
||||
=================
|
||||
* [Robustness] remove dependency on `.apply`
|
||||
* [Deps] update `es-abstract`; use `call-bind` and `get-intrinsic` where applicable
|
||||
* [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `functions-have-names`, `tape`; add `aud`, `safe-publish-latest`
|
||||
* [actions] add "Allow Edits" workflow
|
||||
* [actions] switch Automatic Rebase workflow to `pull_request_target` event
|
||||
* [Tests] migrate tests to Github Actions
|
||||
* [Tests] run `nyc` on all tests
|
||||
* [Tests] add `implementation` test; run `es-shim-api` in postlint; use `tape` runner
|
||||
|
||||
3.1.1 / 2019-12-21
|
||||
=================
|
||||
* [Fix] IE < 9 does not have index access on strings
|
||||
|
|
|
|||
12
node_modules/array-includes/implementation.js
generated
vendored
12
node_modules/array-includes/implementation.js
generated
vendored
|
|
@ -1,13 +1,13 @@
|
|||
'use strict';
|
||||
|
||||
var ToInteger = require('es-abstract/2018/ToInteger');
|
||||
var ToLength = require('es-abstract/2018/ToLength');
|
||||
var ToObject = require('es-abstract/2018/ToObject');
|
||||
var SameValueZero = require('es-abstract/2018/SameValueZero');
|
||||
var ToInteger = require('es-abstract/2020/ToInteger');
|
||||
var ToLength = require('es-abstract/2020/ToLength');
|
||||
var ToObject = require('es-abstract/2020/ToObject');
|
||||
var SameValueZero = require('es-abstract/2020/SameValueZero');
|
||||
var $isNaN = require('es-abstract/helpers/isNaN');
|
||||
var $isFinite = require('es-abstract/helpers/isFinite');
|
||||
var GetIntrinsic = require('es-abstract/GetIntrinsic');
|
||||
var callBound = require('es-abstract/helpers/callBound');
|
||||
var GetIntrinsic = require('get-intrinsic');
|
||||
var callBound = require('call-bind/callBound');
|
||||
var isString = require('is-string');
|
||||
|
||||
var $charAt = callBound('String.prototype.charAt');
|
||||
|
|
|
|||
15
node_modules/array-includes/index.js
generated
vendored
15
node_modules/array-includes/index.js
generated
vendored
|
|
@ -1,26 +1,27 @@
|
|||
'use strict';
|
||||
|
||||
var define = require('define-properties');
|
||||
var RequireObjectCoercible = require('es-abstract/2018/RequireObjectCoercible');
|
||||
var callBound = require('es-abstract/helpers/callBound');
|
||||
var RequireObjectCoercible = require('es-abstract/2020/RequireObjectCoercible');
|
||||
var callBind = require('call-bind');
|
||||
var callBound = require('call-bind/callBound');
|
||||
|
||||
var implementation = require('./implementation');
|
||||
var getPolyfill = require('./polyfill');
|
||||
var polyfill = getPolyfill();
|
||||
var polyfill = callBind.apply(getPolyfill());
|
||||
var shim = require('./shim');
|
||||
|
||||
var $slice = callBound('Array.prototype.slice');
|
||||
|
||||
/* eslint-disable no-unused-vars */
|
||||
var boundIncludesShim = function includes(array, searchElement) {
|
||||
var boundShim = function includes(array, searchElement) {
|
||||
/* eslint-enable no-unused-vars */
|
||||
RequireObjectCoercible(array);
|
||||
return polyfill.apply(array, $slice(arguments, 1));
|
||||
return polyfill(array, $slice(arguments, 1));
|
||||
};
|
||||
define(boundIncludesShim, {
|
||||
define(boundShim, {
|
||||
getPolyfill: getPolyfill,
|
||||
implementation: implementation,
|
||||
shim: shim
|
||||
});
|
||||
|
||||
module.exports = boundIncludesShim;
|
||||
module.exports = boundShim;
|
||||
|
|
|
|||
32
node_modules/array-includes/package.json
generated
vendored
32
node_modules/array-includes/package.json
generated
vendored
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "array-includes",
|
||||
"version": "3.1.1",
|
||||
"version": "3.1.3",
|
||||
"author": {
|
||||
"name": "Jordan Harband",
|
||||
"email": "ljharb@gmail.com",
|
||||
|
|
@ -20,15 +20,13 @@
|
|||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"prepublish": "safe-publish-latest",
|
||||
"pretest": "npm run --silent lint && evalmd README.md",
|
||||
"test": "npm run --silent tests-only",
|
||||
"posttest": "npx aud",
|
||||
"tests-only": "es-shim-api --bound && npm run --silent test:shimmed && npm run --silent test:module",
|
||||
"test:shimmed": "node test/shimmed.js",
|
||||
"test:module": "node test/index.js",
|
||||
"coverage": "covert test/*.js",
|
||||
"coverage:quiet": "covert test/*.js --quiet",
|
||||
"lint": "eslint ."
|
||||
"posttest": "npx aud --production",
|
||||
"tests-only": "nyc tape 'test/**/*.js'",
|
||||
"lint": "eslint .",
|
||||
"postlint": "es-shim-api --bound"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
@ -46,25 +44,31 @@
|
|||
"es-shim API"
|
||||
],
|
||||
"dependencies": {
|
||||
"call-bind": "^1.0.2",
|
||||
"define-properties": "^1.1.3",
|
||||
"es-abstract": "^1.17.0",
|
||||
"es-abstract": "^1.18.0-next.2",
|
||||
"get-intrinsic": "^1.1.1",
|
||||
"is-string": "^1.0.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@es-shims/api": "^2.1.2",
|
||||
"@ljharb/eslint-config": "^15.1.0",
|
||||
"covert": "^1.1.1",
|
||||
"eslint": "^6.8.0",
|
||||
"@ljharb/eslint-config": "^17.5.1",
|
||||
"aud": "^1.1.4",
|
||||
"eslint": "^7.20.0",
|
||||
"evalmd": "0.0.19",
|
||||
"foreach": "^2.0.5",
|
||||
"function-bind": "^1.1.1",
|
||||
"functions-have-names": "^1.2.0",
|
||||
"functions-have-names": "^1.2.2",
|
||||
"has-strict-mode": "^1.0.1",
|
||||
"indexof": "^0.0.1",
|
||||
"tape": "^4.12.0"
|
||||
"nyc": "^10.3.2",
|
||||
"safe-publish-latest": "^1.1.4",
|
||||
"tape": "^5.2.0"
|
||||
},
|
||||
"testling": {
|
||||
"files": [
|
||||
"test/index.js",
|
||||
"test/implementation.js",
|
||||
"test/shimmed.js"
|
||||
],
|
||||
"browsers": [
|
||||
|
|
|
|||
14606
node_modules/array-includes/test.html
generated
vendored
14606
node_modules/array-includes/test.html
generated
vendored
File diff suppressed because one or more lines are too long
20
node_modules/array-includes/test/implementation.js
generated
vendored
Normal file
20
node_modules/array-includes/test/implementation.js
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
'use strict';
|
||||
|
||||
var implementation = require('../implementation');
|
||||
var callBind = require('call-bind');
|
||||
var test = require('tape');
|
||||
var hasStrictMode = require('has-strict-mode')();
|
||||
var runTests = require('./tests');
|
||||
|
||||
test('as a function', function (t) {
|
||||
t.test('bad array/this value', { skip: !hasStrictMode }, function (st) {
|
||||
/* eslint no-useless-call: 0 */
|
||||
st['throws'](function () { implementation.call(undefined); }, TypeError, 'undefined is not an object');
|
||||
st['throws'](function () { implementation.call(null); }, TypeError, 'null is not an object');
|
||||
st.end();
|
||||
});
|
||||
|
||||
runTests(callBind(implementation), t);
|
||||
|
||||
t.end();
|
||||
});
|
||||
2
node_modules/array-includes/test/shimmed.js
generated
vendored
2
node_modules/array-includes/test/shimmed.js
generated
vendored
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
require('../shim')();
|
||||
require('../auto');
|
||||
|
||||
var test = require('tape');
|
||||
var defineProperties = require('define-properties');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue