nmr-processing
Advanced tools
Comparing version 2.1.0 to 2.1.1
# 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 @@ |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
373358