The library seems great and powerful, but the problem I see for the web is lodash dependency which is the large one. Instead of requiring full lodash library could use the modular approach, there are actually around ~10 functions used from there.
These could be just replaced with example:
// (great for smaller builds with browserify/webpack) var chunk = require('lodash/array/chunk');
The library seems great and powerful, but the problem I see for the web is lodash dependency which is the large one. Instead of requiring full lodash library could use the modular approach, there are actually around ~10 functions used from there.
These could be just replaced with example:
// (great for smaller builds with browserify/webpack) var chunk = require('lodash/array/chunk');
There are also a separate method based builds also https://www.npmjs.com/browse/keyword/lodash-modularized.