magic-string
Advanced tools
Comparing version 0.6.3 to 0.6.4
# changelog | ||
## 0.6.4 | ||
* Fix bug with positive integer coercion | ||
## 0.6.3 | ||
@@ -4,0 +8,0 @@ |
@@ -603,3 +603,3 @@ (function (global, factory) { | ||
if (loc !== -1) { | ||
if (~loc) { | ||
if (! ~currentStart) { | ||
@@ -606,0 +606,0 @@ currentStart = loc; |
@@ -556,3 +556,3 @@ (function (global, factory) { | ||
if (loc !== -1) { | ||
if (~loc) { | ||
if (! ~currentStart) { | ||
@@ -559,0 +559,0 @@ currentStart = loc; |
@@ -5,3 +5,3 @@ { | ||
"author": "Rich Harris", | ||
"version": "0.6.3", | ||
"version": "0.6.4", | ||
"repository": "https://github.com/rich-harris/magic-string", | ||
@@ -8,0 +8,0 @@ "main": "dist/magic-string.js", |
@@ -290,3 +290,3 @@ import SourceMap from '../utils/SourceMap'; | ||
if ( loc !== -1 ) { | ||
if ( ~loc ) { | ||
if ( !~currentStart ) { | ||
@@ -293,0 +293,0 @@ currentStart = loc; |
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
82423