Files
2022-04-07 18:09:31 +05:30

7 lines
186 B
JavaScript

'use strict';
module.exports = function whereNotNull() {
var key = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
return this.where(key, '!==', null);
};