lodash-prototype
v0.0.0
Published
use lodash functions directly on objects
Downloads
3
Readme
lodash-prototype
Use lodash functions directly on the objects.
Usage
In node:
require('lodash-prototype');
"10".parseInt(15); // should give 15
In browser:
<script src="lodash.js"></script>
<script src="lodash-prototype.js"></script>
<script>
"10".parseInt(15); // should give 15
</script>