Skip to content

alirezakargar1380/possible-numbers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

possible-numbers

CI

with this package you can generate All possible numbers with specific length

Installation and Usage

Server-side usage

Install the library with npm install possible-numbers

No ES6

var all_possible_nums = require('possible-numbers');

let allCombitions = all_possible_nums({
    "one": [1],
    "two": [1, 2, 3, 4, 5, 6, 7, 8, 9],
    "three": [1]
})

console.log(allCombitions) //=> [
//   111, 121, 131,
//   141, 151, 161,
//   171, 181, 191
// ]

ES6

import all_possible_nums from "possible-numbers";

Maintainers

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published