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

@pinemach/obj-permute

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pinemach/obj-permute

Iterate permutations described by a states object.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
31
decreased by-61.73%
Maintainers
1
Weekly downloads
 
Created
Source

@pinemach/obj-permute

Coverage Status Build Status NPM version MIT License

@pinemach/obj-permute is a small JavaScript package which can be used to iterate the list of objects representing every combination of attribute values as specified by an input object whose attributes refer to lists of possible values.

You can read the full API documentation at pineapplemachine.github.io/obj-permute-js/.

Installation

You can install this package with the package manager of your choice. For example,

npm install @pinemach/obj-permute

You can then import and use the module like so:

// CommonJS
const getObjectPermutations = require("@pinemach/obj-permute").getObjectPermutations;
// ES6 modules
import getObjectPermutations from "@pinemach/obj-permute";

Usage

This package exports the getObjectPermutations function, which accepts an object whose attributes associate keys with lists of values.

The function returns an iterator which enumerates objects representing every combination of attribute values within those lists.

For example, the states object input {x: [0, 1], y: [2, 3]} corresponds to the list of permutations containing the objects {x: 0, y: 2}, {x: 1, y: 2}, {x: 0, y: 3}, and {x: 1, y: 3}.

import getObjectPermutations from "@pinemach/obj-permute";

// Get an iterator for every combination of attribute values
const permutations = getObjectPermutations({
    x: [0, 1],
    y: [2, 3],
});

// Get an array from that iterator
const permutationsArray = permutations.array();

// Verify that each expected item is present
assert(permutationsArray.length === 4);
assert(permutationsArray.find(
    result => result.x === 0 && result.y === 2
));
assert(permutationsArray.find(
    result => result.x === 1 && result.y === 2
));
assert(permutationsArray.find(
    result => result.x === 0 && result.y === 3
));
assert(permutationsArray.find(
    result => result.x === 1 && result.y === 3
));

Keywords

FAQs

Package last updated on 16 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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