Comparing version 0.0.5 to 0.0.6
@@ -0,1 +1,5 @@ | ||
=== 0.0.6 2013-12-13 | ||
* little fix | ||
=== 0.0.5 2013-12-13 | ||
@@ -2,0 +6,0 @@ |
@@ -102,6 +102,7 @@ (function() { | ||
Asearch.prototype.unpack = function(str) { | ||
var bytes; | ||
var bytes, c, code, _i, _len, _ref; | ||
bytes = []; | ||
str.split(/(?:)/).map(function(c) { | ||
var code; | ||
_ref = str.split(/(?:)/); | ||
for (_i = 0, _len = _ref.length; _i < _len; _i++) { | ||
c = _ref[_i]; | ||
code = c.charCodeAt(0); | ||
@@ -111,4 +112,4 @@ if (code > 0xFF) { | ||
} | ||
return bytes.push(code & 0xFF); | ||
}); | ||
bytes.push(code & 0xFF); | ||
} | ||
return bytes; | ||
@@ -115,0 +116,0 @@ }; |
{ | ||
"name": "asearch", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "ambiguity text search", |
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
6570
105