Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

delayed-call.coffee 358B

1234567891011
  1. #!/usr/bin/env ./node_modules/.bin/coffee
  2. ###
  3. Expected output is a number above 350 and below 600.
  4. The time reported is relative to the time the node.js process was started
  5. this is approximately at `(Date.now() process.uptime() * 1000)`
  6. ###
  7. delay = require "call-delayed"
  8. now = require "../../lib/performance-now"
  9. delay 250, -> console.log now().toFixed 3