New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

underskore

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

underskore

[Underscore.js](http://underscorejs.org/) and a little more

0.0.12
latest
Source
npm
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

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. :)

Keywords

underscore

FAQs

Package last updated on 18 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts