We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f98aab4 commit cb59f37Copy full SHA for cb59f37
lib/helpers/model/applyStaticHooks.js
@@ -42,8 +42,6 @@ module.exports = function applyStaticHooks(model, hooks, statics) {
42
const cb = typeof lastArg === 'function' ? lastArg : null;
43
const args = Array.prototype.slice.
44
call(arguments, 0, cb == null ? numArgs : numArgs - 1);
45
- // Special case: can't use `Kareem#wrap()` because it doesn't currently
46
- // support wrapped functions that return a promise.
47
return promiseOrCallback(cb, callback => {
48
hooks.execPre(key, model, args).then(() => onPreComplete(null), err => onPreComplete(err));
49
0 commit comments