jcampconverter
Advanced tools
Comparing version 5.0.1 to 5.0.2
@@ -0,1 +1,5 @@ | ||
## [5.0.2](https://github.com/cheminfo-js/jcampconverter/compare/v5.0.1...v5.0.2) (2020-04-08) | ||
## [5.0.1](https://github.com/cheminfo-js/jcampconverter/compare/v5.0.0...v5.0.1) (2020-04-04) | ||
@@ -2,0 +6,0 @@ |
@@ -730,3 +730,3 @@ 'use strict'; | ||
let ldrs = jcamp.split(/[\r\n]+##/); | ||
let ldrs = jcamp.replace(/[\r\n]+##/g, '\n##').split('\n##'); | ||
@@ -733,0 +733,0 @@ profiling(result, 'Split to LDRS', options); |
{ | ||
"name": "jcampconverter", | ||
"version": "5.0.1", | ||
"version": "5.0.2", | ||
"description": "Parse and convert JCAMP data", | ||
@@ -59,2 +59,3 @@ "main": "lib/index.js", | ||
"eslint-plugin-prettier": "^3.1.2", | ||
"esm": "^3.2.25", | ||
"jest": "^25.2.6", | ||
@@ -61,0 +62,0 @@ "prettier": "^2.0.2", |
@@ -54,3 +54,3 @@ import { isMSField, convertMSFieldToLabel } from './complexChromatogram'; | ||
let ldrs = jcamp.split(/[\r\n]+##/); | ||
let ldrs = jcamp.replace(/[\r\n]+##/g, '\n##').split('\n##'); | ||
@@ -57,0 +57,0 @@ profiling(result, 'Split to LDRS', options); |
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
77864
14