Comparing version 9.0.1 to 9.0.2
"use strict"; | ||
const isInteger = require("./isInteger.js"); | ||
const isNumber = require("./isNumber.js"); | ||
const isInteger = require("./isInteger.js"); | ||
function _precise(method, number, decimals) { | ||
@@ -5,0 +5,0 @@ if (!isNumber(number)) { |
@@ -8,2 +8,3 @@ /** | ||
* isNumber({}); // false | ||
* isNumber(NaN); // false | ||
* ``` | ||
@@ -14,2 +15,2 @@ * | ||
*/ | ||
export default function isNumber<T = any>(value: T): boolean; | ||
export default function isNumber(value: any): value is number; |
{ | ||
"name": "celia", | ||
"version": "9.0.1", | ||
"version": "9.0.2", | ||
"main": "./dist/index.js", | ||
@@ -5,0 +5,0 @@ "module": "./dist/index.mjs", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
82627
2947