View on StackOverflow
You can install permutated
permutated
$ npm install permutated
const permutated = require('permutated'); (async () => { console.log(await permutated('abc')); //=> [ 'abc', 'acb', 'bac', 'bca', 'cab', 'cba' ] })();