0.0.12 • Published 8 years ago

underskore v0.0.12

Weekly downloads
17
License
ISC
Repository
github
Last release
8 years ago

underskore

GitHub version NPM Version Coverage Status

Deps Dev Deps Peer Deps

NPM Downloads GitHub stars GitHub forks GitHub issues

Underscore.js and a little more

  • delta _.delta(object, reference) Returns an object with the values from object that are different from the corresponding values in reference.

    var reference = {a: 1, b: 2, c: 2},
        object = {a: 2, b: 1, c: 2};
    
    _.delta(object, reference);
    => {a: 2, b: 1}

After installing dev dependencies, you can run tests with npm test and generate coverage reports with npm run coverage.

Feel free to fork, extend and contribute. :)

0.0.12

8 years ago

0.0.11

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago