File tree Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -119,17 +119,13 @@ for (var _i = 0, _arr = [
119
119
120
120
// Check boxed primitives.
121
121
console . log ( 'Testing' , 'isBoxedPrimitive' ) ;
122
- [ function ( ) {
123
- return new Boolean ( ) ;
124
- } , function ( ) {
125
- return new Number ( ) ;
126
- } , function ( ) {
127
- return new String ( ) ;
128
- } , function ( ) {
129
- return Object ( Symbol ( ) ) ;
130
- } , function ( ) {
131
- return Object ( BigInt ( 0 ) ) ;
132
- } ] . forEach ( function ( getEntry ) {
122
+ [
123
+ function ( ) { return new Boolean ( ) ; } ,
124
+ function ( ) { return new Number ( ) ; } ,
125
+ function ( ) { return new String ( ) ; } ,
126
+ function ( ) { return Object ( Symbol ( ) ) ; } ,
127
+ function ( ) { return Object ( BigInt ( 0 ) ) ; }
128
+ ] . forEach ( function ( getEntry ) {
133
129
var entry ;
134
130
try {
135
131
entry = getEntry ( ) ;
You can’t perform that action at this time.
0 commit comments