Files
tryno10/app/code/node_modules/collect.js/dist/methods/whereBetween.js
T
2022-04-07 18:09:31 +05:30

5 lines
158 B
JavaScript

'use strict';
module.exports = function whereBetween(key, values) {
return this.where(key, '>=', values[0]).where(key, '<=', values[values.length - 1]);
};