File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ var ToObject = require('es-object-atoms/ToObject');
99var ToString = require ( 'es-abstract/2024/ToString' ) ;
1010
1111var forEach = require ( 'es-abstract/helpers/forEach' ) ;
12- var MAX_SAFE_INTEGER = require ( 'es-abstract/helpers /maxSafeInteger' ) ;
12+ var MAX_SAFE_INTEGER = require ( 'math-intrinsics/constants /maxSafeInteger' ) ;
1313
1414var $TypeError = require ( 'es-errors/type' ) ;
1515var callBound = require ( 'call-bound' ) ;
1616var isString = require ( 'is-string' ) ;
1717
1818// Check failure of by-index access of string characters (IE < 9) and failure of `0 in boxedString` (Rhino)
19- var boxedString = Object ( 'a' ) ;
19+ var boxedString = ToObject ( 'a' ) ;
2020var splitString = boxedString [ 0 ] !== 'a' || ! ( 0 in boxedString ) ;
2121
2222var strSplit = callBound ( 'String.prototype.split' ) ;
Original file line number Diff line number Diff line change 7676 "es-abstract" : " ^1.23.6" ,
7777 "es-errors" : " ^1.3.0" ,
7878 "es-object-atoms" : " ^1.0.0" ,
79- "is-string" : " ^1.1.1"
79+ "is-string" : " ^1.1.1" ,
80+ "math-intrinsics" : " ^1.1.0"
8081 },
8182 "testling" : {
8283 "files" : " test/*.js"
You can’t perform that action at this time.
0 commit comments