Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js-combinatorics

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-combinatorics - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

6

combinatorics.js
/*
* $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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc