UNPKG

128 BJavaScriptView Raw
1module.exports = {
2 nano: function(ns) {
3 var start = process.hrtime();
4 while (process.hrtime() < start + ns) {}
5 }
6};