@memlab/core
Version:
memlab core libraries
22 lines (21 loc) • 545 B
JavaScript
;
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @oncall memory_lab
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.nGram = nGram;
function nGram(n, terms) {
const nGrams = [];
let index = 0;
while (index <= terms.length - n) {
nGrams[index] = terms.slice(index, index + n).join(' ');
++index;
}
return nGrams;
}