pipeline.js

Empty

function
Empty()

Empty stage faster than use unassigned Stage

function Empty() {
	Stage.apply(this);
}

execute

method
Empty.prototype.execute()

Option name Type Description
context Context

evaluating context

[callback] Context

returning callback

override of execute

Empty.prototype.execute = function(ctx, callback){
	callback(null, ctx);
};