Skip to content

Commit

Permalink
[Fix] use for-each instead of foreach
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Nov 8, 2022
1 parent a175a68 commit 6f2a0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var hasSymbols = require('has-symbols')();
var GetIntrinsic = require('get-intrinsic');
var SLOT = require('internal-slot');
var entries = require('object.entries');
var forEach = require('foreach');
var forEach = require('for-each');
var CreateMethodProperty = require('es-abstract/2022/CreateMethodProperty');
var OrdinaryObjectCreate = require('es-abstract/2022/OrdinaryObjectCreate');
var Type = require('es-abstract/2022/Type');
Expand Down

0 comments on commit 6f2a0da

Please sign in to comment.