1.0.1 • Published 1 year ago
generate-full-text v1.0.1
Generates All Possible Texts Contains IN Given String
import { GenerateCombinations } from "generate-full-text";
const MIN_SEARCH_LEN = 3;
const gen = new GenerateCombinations(MIN_SEARCH_LEN);
const combinations = gen.build('Life Is Beautiful');
console.log(combinations);
Installation
Installation is done using the
npm install
command:
$ npm install generate-full-text