Socket
Socket
Sign inDemoInstall

ml-arrayxy-uniquex

Package Overview
Dependencies
0
Maintainers
7
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ml-arrayxy-uniquex

Function to sum the y values if the x values are equals. The x array has to be ordered.


Version published
Weekly downloads
101
decreased by-37.27%
Maintainers
7
Install size
8.17 kB
Created
Weekly downloads
 

Readme

Source

arrayxy-uniquex

NPM version build status David deps npm download

Function to sum the y values if the x values are equals. The x array has to be ordered. It is an in place modification

Installation

npm i ml-arrayxy-uniquex

const uniqueX=require('ml-arrayxy-uniquex');

  var x = [0, 0, 1, 2, 3, 3];
  var y = [1, 2, 3, 4, 5, 6];
  uniqueX({ x, y });

  // x = [0, 1, 2, 3]
  // y = [3, 3, 4, 11]

API Documentation

License

MIT

Keywords

FAQs

Last updated on 04 Mar 2021

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