Skip to content

Commit

Permalink
[Refactor] use get-proto and math-intrinsics directly
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 2, 2025
1 parent 5c9dbf9 commit 20395cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"define-properties": "^1.2.1",
"es-abstract": "^1.23.9",
"es-errors": "^1.3.0",
"get-proto": "^1.0.1",
"typed-array-buffer": "^1.0.3",
"typed-array-byte-offset": "^1.0.4"
},
Expand Down
2 changes: 1 addition & 1 deletion shim.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var define = require('define-properties');
var getProto = require('es-abstract/helpers/getProto');
var getProto = require('get-proto');

var getPolyfill = require('./polyfill');

Expand Down
2 changes: 1 addition & 1 deletion test/shimmed.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var callBind = require('call-bind');
var isEnumerable = Object.prototype.propertyIsEnumerable;
var functionsHaveNames = require('functions-have-names')();
var hasStrictMode = require('has-strict-mode')();
var getProto = require('es-abstract/helpers/getProto');
var getProto = require('get-proto');

var runTests = require('./tests');

Expand Down

0 comments on commit 20395cc

Please sign in to comment.