humanize-ms
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -17,3 +17,5 @@ /*! | ||
if (typeof t === 'number') return t; | ||
return ms(t); | ||
var r = ms(t); | ||
if (r === undefined) console.warn('ms(%s) got undefined in %s', t, __filename); | ||
return r; | ||
}; |
{ | ||
"name": "humanize-ms", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "transform humanize time to ms", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
65823
16
87