Comparing version 2.0.1 to 2.0.2
@@ -0,1 +1,4 @@ | ||
# 2.0.2 | ||
* Add missing `var` in front of local variable (#7, @SStauden). | ||
# 2.0.1 | ||
@@ -2,0 +5,0 @@ * Fix bug causing utfstring to incorrectly calculate logical character indices. |
{ | ||
"name": "utfstring", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "UTF-safe string operations", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -171,3 +171,3 @@ (function() { | ||
for (var i = 0; i < string.length; i ++) { | ||
codePoint = this.charCodeAt(string, i); | ||
var codePoint = this.charCodeAt(string, i); | ||
@@ -174,0 +174,0 @@ if (!codePoint) { |
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
49338