mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-07 23:37:21 +00:00
push all website files
This commit is contained in:
16
website/node_modules/npm/lib/install/and-finish-tracker.js
generated
vendored
Normal file
16
website/node_modules/npm/lib/install/and-finish-tracker.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
'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))
|
||||
}
|
Reference in New Issue
Block a user