We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Get matching n-grams between strings.
const matchingNgrams = require('@extra-string/matching-ngrams'); // matchingNgrams(<string-1>, <string-2>, <n>) matchingNgrams('worm', 'storm', 2); // ['or', 'rm'] matchingNgrams('astronaut', 'astronomer', 3); // ['ast', 'str', 'tro', 'ron'] matchingNgrams('coconut', 'cotton', 2); // ['co', 'on']