Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nmr-processing

Package Overview
Dependencies
Maintainers
4
Versions
268
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nmr-processing - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

7

CHANGELOG.md
# Changelog
### [2.1.1](https://www.github.com/cheminfo/nmr-processing/compare/v2.1.0...v2.1.1) (2021-07-26)
### Bug Fixes
* plural name in joinRanges function ([2a33761](https://www.github.com/cheminfo/nmr-processing/commit/2a337617a81deb04f9af0a5ea6ae6de5497fa8e5))
## [2.1.0](https://www.github.com/cheminfo/nmr-processing/compare/v2.0.1...v2.1.0) (2021-07-26)

@@ -4,0 +11,0 @@

2

package.json
{
"name": "nmr-processing",
"version": "2.1.0",
"version": "2.1.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -6,3 +6,3 @@ export function joinRanges(ranges) {

ranges[i].to = Math.max(ranges[i + 1].to, ranges[i].to);
ranges[i].signals = ranges[i].signal.concat(ranges[i + 1].signals);
ranges[i].signals = ranges[i].signals.concat(ranges[i + 1].signals);
ranges[i].integration += ranges[i + 1].integration;

@@ -9,0 +9,0 @@ ranges.splice(i + 1, 1);

Sorry, the diff of this file is too big to display

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