mirror of
https://github.com/seejohnrun/haste-server.git
synced 2026-02-10 16:01:32 +00:00
Added node modules
This commit is contained in:
30
node_modules/mocha/lib/hook.js
generated
vendored
Normal file
30
node_modules/mocha/lib/hook.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
/**
|
||||
* Module dependencies.
|
||||
*/
|
||||
|
||||
var Runnable = require('./runnable');
|
||||
|
||||
/**
|
||||
* Expose `Hook`.
|
||||
*/
|
||||
|
||||
module.exports = Hook;
|
||||
|
||||
/**
|
||||
* Initialize a new `Hook` with the given `title` and callback `fn`.
|
||||
*
|
||||
* @param {String} title
|
||||
* @param {Function} fn
|
||||
* @api private
|
||||
*/
|
||||
|
||||
function Hook(title, fn) {
|
||||
Runnable.call(this, title, fn);
|
||||
}
|
||||
|
||||
/**
|
||||
* Inherit from `Runnable.prototype`.
|
||||
*/
|
||||
|
||||
Hook.prototype.__proto__ = Runnable.prototype;
|
||||
Reference in New Issue
Block a user