UNPKG

json-sql-query

Version:

Use CRUD operations on JSON with SQL queries.

8 lines (7 loc) 180 B
module.exports = { chunk: (arr, len) => { const nm = []; for (let i = 0; i < arr.length; i += len) nm.push(arr.slice(i, i + len)); return nm; }, };