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

join-then-sum

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

join-then-sum

Join an array of objects on a key, then sum elements in the join.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-40%
Maintainers
1
Weekly downloads
 
Created
Source

join-then-sum

Join an array of objects on a key, then sum elements in the join.

Build Status npm install

Example

var joinsum = require('join-then-sum')
  , data

data = [
    {
      'i': 0
      'j': 0
      'v': 1
    }
  , {
      'i': 0
      'j': 0
      'v': 2
    }
  , {
      'i': 1
      'j': 0
      'v': 3
    }
  , {
      'i': 1
      'j': 1
      'v': 4
    }
  , {
      'i': 1
      'j': 1
      'v': '5'
    }
]

joinsum(data, ['i', 'j']) 
// returns:
// [
//     {i: 0, j: 0, v: 3}
//   , {i: 1, j: 0, v: 3}
//   , {i: 1, j: 1, v: 9}
// ]

Relies on join-by-keys to join arrays of objects, and the sums up the resulting arrays, leaving join keys alone. Array values are coerced to Number prior to summing, which means non-coercible values will result in a NaN.

License

This project is licensed under the Apache License, Version 2.0. See LICENSE for the full license.

Keywords

FAQs

Package last updated on 15 May 2015

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc