async-ratelimiter
Advanced tools
Comparing version 1.3.4 to 1.3.5
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://nicedoc.io/microlinkhq/async-ratelimiter", | ||
"version": "1.3.4", | ||
"version": "1.3.5", | ||
"main": "src/index.js", | ||
@@ -8,0 +8,0 @@ "author": { |
'use strict' | ||
const time = Date.now() * 1e3 | ||
const start = process.hrtime() | ||
const start = process.hrtime.bigint() | ||
module.exports.now = function () { | ||
const diff = process.hrtime(start) | ||
return time + diff[0] * 1e6 + Math.round(diff[1] * 1e-3) | ||
} | ||
module.exports.now = () => time + Number(process.hrtime.bigint() - start) * 1e-3 |
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
9574
72