custom-permutation
Version:
Permutation generator with custom options.
14 lines • 395 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const CustomPermutation_1 = require("./CustomPermutation");
let customPerm = new CustomPermutation_1.default([], {}, {});
let count = 0;
while (true) {
let next = customPerm.next();
if (!next) {
break;
}
count++;
}
module.exports = CustomPermutation_1.default;
//# sourceMappingURL=index.js.map