js-combinatorics
Advanced tools
Comparing version 0.2.3 to 0.2.4
/* | ||
* $Id: combinatorics.js,v 0.23 2013/03/09 09:02:43 dankogai Exp dankogai $ | ||
* $Id: combinatorics.js,v 0.24 2013/03/09 12:24:08 dankogai Exp dankogai $ | ||
* | ||
@@ -150,4 +150,4 @@ * Licensed under the MIT license. | ||
var i = 0, | ||
n = this.index; | ||
result = []; | ||
n = this.index, | ||
result = []; | ||
for (; n; n >>>= 1, i++) if (n & 1) result.push(this[i]); | ||
@@ -154,0 +154,0 @@ this.index = nextIndex(this.index); |
{ | ||
"name": "js-combinatorics", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "Simple combinatorics like power set, combination, and permutation in JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "combinatorics.js", |
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
24688