removed helpers.done

This commit is contained in:
barisusakli
2014-09-03 01:13:28 -04:00
parent e6d0eede4f
commit 94d050fd4f
6 changed files with 29 additions and 21 deletions

View File

@@ -31,12 +31,6 @@ helpers.valueToString = function(value) {
return value.toString();
};
helpers.done = function(cb) {
return function(err, result) {
if (typeof cb === 'function') {
cb(err, result);
}
};
};
helpers.noop = function() {};
module.exports = helpers;