Socket
Socket
Sign inDemoInstall

underskore

Package Overview
Dependencies
1
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    underskore

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


Version published
Maintainers
1
Install size
105 kB
Created

Readme

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

FAQs

Last updated on 18 Feb 2016

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc