/lodash-prototype

Use lodash functions directly on objects

Primary LanguageJavaScript

lodash-prototype

Dependency Status NPM version Bitdeli Badge

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>