mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
360 B
17 lines
360 B
9 years ago
|
'use strict'
|
||
|
var validate = require('aproba')
|
||
|
|
||
|
module.exports = function (tracker, cb) {
|
||
|
validate('OF', [tracker, cb])
|
||
|
return function () {
|
||
|
tracker.finish()
|
||
|
cb.apply(null, arguments)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports.now = function (tracker, cb) {
|
||
|
validate('OF', [tracker, cb])
|
||
|
tracker.finish()
|
||
|
cb.apply(null, Array.prototype.slice.call(arguments, 2))
|
||
|
}
|