Talk directly with whom you have to talk!
This is a wrapper of lodash library, that inserts its utils into the prototypes of your primitive types. In theory, it's auto-updatable as the function names are obtained with a crawler of the official docs. Enjoy!
var _ = require('protolodash');
[1, [2, 3], [4]].flatten();
// โ [1, 2, 3, 4]
['one', 'two', 'three'].groupBy('length');
// โ { '3': ['one', 'two'], '5': ['three'] }
"abc".padLeft(6);
// โ " abc"
function(a, b) { return a + b; }.partial(2)(3);
// โ 5
_.isNull(null);
// โ true
//(you can still use lodash normally)
npm install protolodash --save
["Array", "Collection", "Date", "Function", "String"]
Noup.
sudo npm install -g coffee-script
npm install
coffee crawler.coffee > methods.js