7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
/**
|
|
* @module number
|
|
*/
|
|
|
|
export const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER
|
|
export const MIN_SAFE_INTEGER = Number.MIN_SAFE_INTEGER
|