Skip to content

Latest commit

 

History

History

39927452

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

View on StackOverflow

You can install permutated

Installing

$ npm install permutated

Usage

const permutated = require('permutated');

(async () => {
    console.log(await permutated('abc'));
	//=> [ 'abc', 'acb', 'bac', 'bca', 'cab', 'cba' ]
})();