UNPKG
choo-shortcache
Version:
latest (0.0.0)
0.0.0
choo nanocomponent cache shortcut
choo-shortcache
/
example
/
node_modules
/
right-now
/
index.js
5 lines
(4 loc)
•
105 B
JavaScript
View Raw
1
2
3
4
5
module
.exports =
function
now
()
{ var
time
= process.hrtime()
return
time
[
0
] *
1e3
+
time
[
1
] /
1e6
}