Upgrade eslint-plugin-import
R=jacktfranklin@chromium.org
Bug: none
Change-Id: I0ad7ba9133af3db19c448a284d79bdfc08101dea
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/3268294
Commit-Queue: Tim van der Lippe <tvanderlippe@chromium.org>
Auto-Submit: Tim van der Lippe <tvanderlippe@chromium.org>
Reviewed-by: Jack Franklin <jacktfranklin@chromium.org>
diff --git a/node_modules/array-includes/.eslintrc b/node_modules/array-includes/.eslintrc
index 0df206d..dc67ea5 100644
--- a/node_modules/array-includes/.eslintrc
+++ b/node_modules/array-includes/.eslintrc
@@ -7,7 +7,16 @@
"complexity": 0,
"id-length": [2, { "min": 1, "max": 26 }],
"max-statements": [2, 14],
- "new-cap": [2, { capIsNewExceptions: ["GetIntrinsic", "ToObject", "ToInteger", "ToLength", "SameValueZero", "RequireObjectCoercible"] }],
+ "new-cap": [2, {
+ "capIsNewExceptions": [
+ "GetIntrinsic",
+ "ToObject",
+ "ToIntegerOrInfinity",
+ "ToLength",
+ "SameValueZero",
+ "RequireObjectCoercible",
+ ],
+ }],
},
"overrides": [
diff --git a/node_modules/array-includes/.nycrc b/node_modules/array-includes/.nycrc
index 1826526..bdd626c 100644
--- a/node_modules/array-includes/.nycrc
+++ b/node_modules/array-includes/.nycrc
@@ -2,10 +2,6 @@
"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"
diff --git a/node_modules/array-includes/CHANGELOG.md b/node_modules/array-includes/CHANGELOG.md
index 7e8a56e..0b35673 100644
--- a/node_modules/array-includes/CHANGELOG.md
+++ b/node_modules/array-includes/CHANGELOG.md
@@ -1,3 +1,14 @@
+3.1.4 / 2021-10-04
+=================
+ * [Robustness] avoid a runtime `Math.max` call
+ * [readme] add github actions/codecov badges
+ * [readme] fix repo URLs; remove travis badge
+ * [Deps] update `es-abstract`, `is-string`
+ * [meta] use `prepublishOnly` script for npm 7+
+ * [actions] update workflows
+ * [actions] use `node/install` instead of `node/run`; use `codecov` action
+ * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@es-shims/api`, `aud`, `tape`
+
3.1.3 / 2021-02-20
=================
* [Deps] update `call-bind`, `es-abstract`, `get-intrinsic`
diff --git a/node_modules/array-includes/README.md b/node_modules/array-includes/README.md
index fb87587..5e29042 100644
--- a/node_modules/array-includes/README.md
+++ b/node_modules/array-includes/README.md
@@ -1,6 +1,7 @@
# array-includes <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]
[![dev dependency status][dev-deps-svg]][dev-deps-url]
[![License][license-image]][license-url]
@@ -10,7 +11,7 @@
An ES7/ES2016 spec-compliant `Array.prototype.includes` shim/polyfill/replacement that works as far down as ES3.
-This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the proposed [spec](http://www.ecma-international.org/ecma-262/6.0/).
+This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the proposed [spec](https://262.ecma-international.org/6.0/).
Because `Array.prototype.includes` depends on a receiver (the `this` value), the main export takes the array to operate on as the first argument.
@@ -80,15 +81,17 @@
Simply clone the repo, `npm install`, and run `npm test`
[package-url]: https://npmjs.org/package/array-includes
-[npm-version-svg]: http://versionbadg.es/es-shims/array-includes.svg
-[travis-svg]: https://travis-ci.org/es-shims/array-includes.svg
-[travis-url]: https://travis-ci.org/es-shims/array-includes
+[npm-version-svg]: https://versionbadg.es/es-shims/array-includes.svg
[deps-svg]: https://david-dm.org/es-shims/array-includes.svg
[deps-url]: https://david-dm.org/es-shims/array-includes
[dev-deps-svg]: https://david-dm.org/es-shims/array-includes/dev-status.svg
[dev-deps-url]: https://david-dm.org/es-shims/array-includes#info=devDependencies
[npm-badge-png]: https://nodei.co/npm/array-includes.png?downloads=true&stars=true
-[license-image]: http://img.shields.io/npm/l/array-includes.svg
+[license-image]: https://img.shields.io/npm/l/array-includes.svg
[license-url]: LICENSE
-[downloads-image]: http://img.shields.io/npm/dm/array-includes.svg
-[downloads-url]: http://npm-stat.com/charts.html?package=array-includes
+[downloads-image]: https://img.shields.io/npm/dm/array-includes.svg
+[downloads-url]: https://npm-stat.com/charts.html?package=array-includes
+[codecov-image]: https://codecov.io/gh/es-shims/array-includes/branch/main/graphs/badge.svg
+[codecov-url]: https://app.codecov.io/gh/es-shims/array-includes/
+[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/array-includes
+[actions-url]: https://github.com/es-shims/array-includes/actions
diff --git a/node_modules/array-includes/implementation.js b/node_modules/array-includes/implementation.js
index 7823d5a..1211641 100644
--- a/node_modules/array-includes/implementation.js
+++ b/node_modules/array-includes/implementation.js
@@ -1,9 +1,9 @@
'use strict';
-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 ToIntegerOrInfinity = require('es-abstract/2021/ToIntegerOrInfinity');
+var ToLength = require('es-abstract/2021/ToLength');
+var ToObject = require('es-abstract/2021/ToObject');
+var SameValueZero = require('es-abstract/2021/SameValueZero');
var $isNaN = require('es-abstract/helpers/isNaN');
var $isFinite = require('es-abstract/helpers/isFinite');
var GetIntrinsic = require('get-intrinsic');
@@ -12,9 +12,10 @@
var $charAt = callBound('String.prototype.charAt');
var $indexOf = GetIntrinsic('%Array.prototype.indexOf%'); // TODO: use callBind.apply without breaking IE 8
+var $max = GetIntrinsic('%Math.max%');
module.exports = function includes(searchElement) {
- var fromIndex = arguments.length > 1 ? ToInteger(arguments[1]) : 0;
+ var fromIndex = arguments.length > 1 ? ToIntegerOrInfinity(arguments[1]) : 0;
if ($indexOf && !$isNaN(searchElement) && $isFinite(fromIndex) && typeof searchElement !== 'undefined') {
return $indexOf.apply(this, arguments) > -1;
}
@@ -24,7 +25,7 @@
if (length === 0) {
return false;
}
- var k = fromIndex >= 0 ? fromIndex : Math.max(0, length + fromIndex);
+ var k = fromIndex >= 0 ? fromIndex : $max(0, length + fromIndex);
while (k < length) {
if (SameValueZero(searchElement, isString(O) ? $charAt(O, k) : O[k])) {
return true;
diff --git a/node_modules/array-includes/index.js b/node_modules/array-includes/index.js
index bed832e..92cda1c 100644
--- a/node_modules/array-includes/index.js
+++ b/node_modules/array-includes/index.js
@@ -1,7 +1,7 @@
'use strict';
var define = require('define-properties');
-var RequireObjectCoercible = require('es-abstract/2020/RequireObjectCoercible');
+var RequireObjectCoercible = require('es-abstract/2021/RequireObjectCoercible');
var callBind = require('call-bind');
var callBound = require('call-bind/callBound');
diff --git a/node_modules/array-includes/package.json b/node_modules/array-includes/package.json
index aa5c91b..9987f10 100644
--- a/node_modules/array-includes/package.json
+++ b/node_modules/array-includes/package.json
@@ -1,6 +1,6 @@
{
"name": "array-includes",
- "version": "3.1.3",
+ "version": "3.1.4",
"author": {
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
@@ -20,7 +20,8 @@
"license": "MIT",
"main": "index.js",
"scripts": {
- "prepublish": "safe-publish-latest",
+ "prepublish": "not-in-publish || npm run prepublishOnly",
+ "prepublishOnly": "safe-publish-latest",
"pretest": "npm run --silent lint && evalmd README.md",
"test": "npm run --silent tests-only",
"posttest": "npx aud --production",
@@ -46,16 +47,16 @@
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2",
+ "es-abstract": "^1.19.1",
"get-intrinsic": "^1.1.1",
- "is-string": "^1.0.5"
+ "is-string": "^1.0.7"
},
"devDependencies": {
- "@es-shims/api": "^2.1.2",
- "@ljharb/eslint-config": "^17.5.1",
- "aud": "^1.1.4",
- "eslint": "^7.20.0",
- "evalmd": "0.0.19",
+ "@es-shims/api": "^2.2.2",
+ "@ljharb/eslint-config": "^18.0.0",
+ "aud": "^1.1.5",
+ "eslint": "^7.32.0",
+ "evalmd": "^0.0.19",
"foreach": "^2.0.5",
"function-bind": "^1.1.1",
"functions-have-names": "^1.2.2",
@@ -63,7 +64,7 @@
"indexof": "^0.0.1",
"nyc": "^10.3.2",
"safe-publish-latest": "^1.1.4",
- "tape": "^5.2.0"
+ "tape": "^5.3.1"
},
"testling": {
"files": [