cocktail
Version:
CocktailJS is a small library to explore traits, talents, inheritance and annotations concepts in nodejs - Shake your objects and classes with Cocktail!
22 lines (16 loc) • 361 B
JavaScript
/*
*
* Copyright (c) 2013 - 2016 Maximiliano Fierro
* Licensed under the MIT license.
*/
;
var sequence = require('./sequence');
var NoOp = function () {};
NoOp.prototype = {
retain : false,
priority : sequence.NO_OP,
name : 'noOp',
setParameter: function(){},
getParameter: function(){}
};
module.exports = NoOp;