- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
18 lines
553 B
CoffeeScript
18 lines
553 B
CoffeeScript
if performance? and performance.now
|
|
module.exports = -> performance.now()
|
|
else if process? and process.hrtime
|
|
module.exports = -> (getNanoSeconds() - nodeLoadTime) / 1e6
|
|
hrtime = process.hrtime
|
|
getNanoSeconds = ->
|
|
hr = hrtime()
|
|
hr[0] * 1e9 + hr[1]
|
|
moduleLoadTime = getNanoSeconds()
|
|
upTime = process.uptime() * 1e9
|
|
nodeLoadTime = moduleLoadTime - upTime
|
|
else if Date.now
|
|
module.exports = -> Date.now() - loadTime
|
|
loadTime = Date.now()
|
|
else
|
|
module.exports = -> new Date().getTime() - loadTime
|
|
loadTime = new Date().getTime()
|