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/object.values/CHANGELOG.md b/node_modules/object.values/CHANGELOG.md
index b6c6841..a58077e 100644
--- a/node_modules/object.values/CHANGELOG.md
+++ b/node_modules/object.values/CHANGELOG.md
@@ -5,6 +5,15 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [v1.1.5](https://github.com/ljharb/Object.values/compare/v1.1.4...v1.1.5) - 2021-10-03
+
+### Commits
+
+- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@es-shims/api`, `tape` [`c397925`](https://github.com/ljharb/Object.values/commit/c3979252140c24514aeebf3d452b422528e36349)
+- [Deps] update `es-abstract` [`f98d0da`](https://github.com/ljharb/Object.values/commit/f98d0da2035bf8396b2544f2e2ac02aec766d36f)
+- [Robustness] use a call-bound `Array.prototype.push` [`72a3213`](https://github.com/ljharb/Object.values/commit/72a32138e91a9a7b3a828fa1f8f02fe361097c51)
+- [meta] npmignore coverage output [`3b0433f`](https://github.com/ljharb/Object.values/commit/3b0433fe3025cb079b0de2373a0a9cfd2e0777b5)
+
## [v1.1.4](https://github.com/ljharb/Object.values/compare/v1.1.3...v1.1.4) - 2021-05-26
### Commits
diff --git a/node_modules/object.values/implementation.js b/node_modules/object.values/implementation.js
index edac901..a4958f7 100644
--- a/node_modules/object.values/implementation.js
+++ b/node_modules/object.values/implementation.js
@@ -1,16 +1,17 @@
'use strict';
-var RequireObjectCoercible = require('es-abstract/2020/RequireObjectCoercible');
+var RequireObjectCoercible = require('es-abstract/2021/RequireObjectCoercible');
var callBound = require('call-bind/callBound');
var $isEnumerable = callBound('Object.prototype.propertyIsEnumerable');
+var $push = callBound('Array.prototype.push');
module.exports = function values(O) {
var obj = RequireObjectCoercible(O);
var vals = [];
for (var key in obj) {
if ($isEnumerable(obj, key)) { // checks own-ness as well
- vals.push(obj[key]);
+ $push(vals, obj[key]);
}
}
return vals;
diff --git a/node_modules/object.values/package.json b/node_modules/object.values/package.json
index 7fac4b8..25ac3d4 100644
--- a/node_modules/object.values/package.json
+++ b/node_modules/object.values/package.json
@@ -1,6 +1,6 @@
{
"name": "object.values",
- "version": "1.1.4",
+ "version": "1.1.5",
"author": "Jordan Harband <ljharb@gmail.com>",
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -42,21 +42,21 @@
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
- "es-abstract": "^1.18.2"
+ "es-abstract": "^1.19.1"
},
"devDependencies": {
- "@es-shims/api": "^2.1.2",
- "@ljharb/eslint-config": "^17.6.0",
+ "@es-shims/api": "^2.2.2",
+ "@ljharb/eslint-config": "^18.0.0",
"array.prototype.map": "^1.0.3",
"aud": "^1.1.5",
"auto-changelog": "^2.3.0",
- "eslint": "^7.27.0",
+ "eslint": "^7.32.0",
"functions-have-names": "^1.2.2",
"has-strict-mode": "^1.0.1",
"nyc": "^10.3.2",
"object-keys": "^1.1.1",
"safe-publish-latest": "^1.1.4",
- "tape": "^5.2.2"
+ "tape": "^5.3.1"
},
"testling": {
"files": "test/index.js",