Skip to content

Commit

Permalink
[Dev Deps] update @babel/cli, @babel/core, @babel/preset-env, `…
Browse files Browse the repository at this point in the history
…airtap`, `core-js`, `cross-eng`, `object.entries`, `object.getownpropertydescriptors`, `tape`
  • Loading branch information
ljharb committed Sep 7, 2023
1 parent f5d7c66 commit a38013b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@
"browser"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"airtap": "^2.0.2",
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"airtap": "^2.0.4",
"array-fill": "^1.2.0",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"object.entries": "^1.1.0",
"object.getownpropertydescriptors": "^2.0.3",
"tape": "^4.10.1"
"core-js": "^3.32.2",
"cross-env": "^5.2.1",
"object.entries": "^1.1.7",
"object.getownpropertydescriptors": "^2.1.7",
"tape": "^5.6.6"
},
"dependencies": {
"call-bind": "^1.0.2",
Expand Down
8 changes: 2 additions & 6 deletions test/common/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
const assert = require('../../assert');

const getOwnPropertyDescriptors = Object.getOwnPropertyDescriptors
? Object.getOwnPropertyDescriptors
: require('object.getownpropertydescriptors');
const getOwnPropertyDescriptors = require('object.getownpropertydescriptors/polyfill')();

const objectEntries = Object.entries
? Object.entries
: require('object.entries');
const objectEntries = require('object.entries/polyfill')();

// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat
function repeat(str, count) {
Expand Down

0 comments on commit a38013b

Please sign in to comment.