| Current Path : /home/emeraadmin/public_html/4d695/ |
| Current File : /home/emeraadmin/public_html/4d695/scripts.tar |
delayed-call.coffee 0000644 00000000546 15170135042 0010240 0 ustar 00 #!/usr/bin/env ./node_modules/.bin/coffee
###
Expected output is a number above 350 and below 600.
The time reported is relative to the time the node.js process was started
this is approximately at `(Date.now() process.uptime() * 1000)`
###
delay = require "call-delayed"
now = require "../../lib/performance-now"
delay 250, -> console.log now().toFixed 3
initial-value.coffee 0000644 00000000471 15170135042 0010460 0 ustar 00 #!/usr/bin/env ./node_modules/.bin/coffee
###
Expected output is a number above 100 and below 350.
The time reported is relative to the time the node.js process was started
this is approximately at `(Date.now() process.uptime() * 1000)`
###
now = require '../../lib/performance-now'
console.log now().toFixed 3
delayed-require.coffee 0000644 00000000552 15170135042 0010776 0 ustar 00 #!/usr/bin/env ./node_modules/.bin/coffee
###
Expected output is a number above 350 and below 600.
The time reported is relative to the time the node.js process was started
this is approximately at `(Date.now() process.uptime() * 1000)`
###
delay = require "call-delayed"
delay 250, ->
now = require "../../lib/performance-now"
console.log now().toFixed 3
difference.coffee 0000644 00000000257 15170135042 0010011 0 ustar 00 #!/usr/bin/env ./node_modules/.bin/coffee
# Expected output is above 0.005 and below 0.07.
now = require('../../lib/performance-now')
console.log -(now() - now()).toFixed 3