Archive. Date of access: 12 Jan 2022
marak 6c0748869e [dist] Bump to v4.0.0 | преди 7 години | |
---|---|---|
examples | преди 8 години | |
test | преди 7 години | |
.gitignore | преди 7 години | |
ReadMe.md | преди 7 години | |
index.js | преди 7 години | |
package.json | преди 7 години |
Adds before
and after
hooks to any JavaScript protoype chain.
npm install --save prototype-hooks
.before()
hook for all existing prototype methods.after
hook for all existing prototype methodsvar hooks = require('protoype-hooks');
var Creature = function (opts) {
this.name = opts.name;
};
Creature.prototype.talk = function (data, cb) {
cb(null, this.name + ' says ' + data.text);
};
hooks(Creature);
var larry = new Creature({ name: "Larry" });
larry.before('talk', function(data, next) {
data.text = data.text + "!";
next(null, data);
});
larry.after('talk', function(text, next) {
text = text + ' ... ';
next(null, text);
});
larry.talk({ text: 'hi'}, function (err, result){
console.log(err, result);
// outputs: 'Larry says hi! ... '
})