| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,6 +17,8 @@ rules: | |||
| 17 | 17 | message: "Use `const { JSON } = primordials;` instead of the global." | |
| 18 | 18 | - name: Math | |
| 19 | 19 | message: "Use `const { Math } = primordials;` instead of the global." | |
| 20 | + - name: Number | ||
| 21 | + message: "Use `const { Number } = primordials;` instead of the global." | ||
| 20 | 22 | - name: Object | |
| 21 | 23 | message: "Use `const { Object } = primordials;` instead of the global." | |
| 22 | 24 | - name: Reflect | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | 3 | const { | |
| 4 | 4 | MathFloor, | |
| 5 | + Number, | ||
| 5 | 6 | } = primordials; | |
| 6 | 7 | ||
| 7 | 8 | const { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,6 +3,7 @@ | |||
| 3 | 3 | const { | |
| 4 | 4 | ArrayIsArray, | |
| 5 | 5 | DateNow, | |
| 6 | + Number, | ||
| 6 | 7 | NumberIsFinite, | |
| 7 | 8 | ObjectSetPrototypeOf, | |
| 8 | 9 | ReflectOwnKeys, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,6 +3,7 @@ | |||
| 3 | 3 | const { | |
| 4 | 4 | ArrayIsArray, | |
| 5 | 5 | MathMax, | |
| 6 | + Number, | ||
| 6 | 7 | ObjectCreate, | |
| 7 | 8 | ObjectKeys, | |
| 8 | 9 | } = primordials; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,7 @@ | |||
| 1 | 1 | 'use strict'; | |
| 2 | 2 | ||
| 3 | 3 | const { | |
| 4 | + Number, | ||
| 4 | 5 | NumberIsNaN, | |
| 5 | 6 | ObjectCreate, | |
| 6 | 7 | } = primordials; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | 3 | const { | |
| 4 | 4 | Array, | |
| 5 | + Number, | ||
| 5 | 6 | ObjectCreate, | |
| 6 | 7 | ObjectDefineProperties, | |
| 7 | 8 | ObjectDefineProperty, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,6 +16,7 @@ const { | |||
| 16 | 16 | MathMin, | |
| 17 | 17 | MathRound, | |
| 18 | 18 | MathSqrt, | |
| 19 | + Number, | ||
| 19 | 20 | NumberIsNaN, | |
| 20 | 21 | NumberPrototypeValueOf, | |
| 21 | 22 | ObjectAssign, | |
@@ -39,7 +40,7 @@ const { | |||
| 39 | 40 | SymbolPrototypeValueOf, | |
| 40 | 41 | SymbolIterator, | |
| 41 | 42 | SymbolToStringTag, | |
| 42 | - uncurryThis | ||
| 43 | + uncurryThis, | ||
| 43 | 44 | } = primordials; | |
| 44 | 45 | ||
| 45 | 46 | const { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -24,6 +24,7 @@ | |||
| 24 | 24 | const { | |
| 25 | 25 | ArrayIsArray, | |
| 26 | 26 | Boolean, | |
| 27 | + Number, | ||
| 27 | 28 | NumberIsNaN, | |
| 28 | 29 | ObjectDefineProperty, | |
| 29 | 30 | ObjectSetPrototypeOf, | |
| Back | FazBrowse Home | New Git URL |
0 commit comments