Skip to content

Commit

Permalink
[Tests] swap array-map for array.prototype.map
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed May 26, 2021
1 parent e9455ce commit 37d5157
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -44,7 +44,7 @@
"devDependencies": {
"@es-shims/api": "^2.1.2",
"@ljharb/eslint-config": "^17.6.0",
"array-map": "^0.0.0",
"array.prototype.map": "^1.0.3",
"aud": "^1.1.5",
"auto-changelog": "^2.3.0",
"eslint": "^7.27.0",
Expand Down
2 changes: 1 addition & 1 deletion test/tests.js
@@ -1,7 +1,7 @@
'use strict';

var keys = require('object-keys');
var map = require('array-map');
var map = require('array.prototype.map');
var define = require('define-properties');

var hasSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';
Expand Down

0 comments on commit 37d5157

Please sign in to comment.