talisman
Version:
Straightforward fuzzy matching, information retrieval and NLP building blocks for JavaScript.
30 lines (27 loc) • 553 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = lines;
/**
* Talisman tokenizers/lines/naive
* ================================
*
* A very simple line splitter.
*
* [Author]: Guillaume PLIQUE
*/
/**
* Regex.
*/
var LINES = /(?:\r\n|\n\r|\n|\r)/;
/**
* Function tokenizing raw text into a sequence of lines.
*
* @param {string} text - The text to tokenize.
* @return {array} - The tokens.
*/
function lines(text) {
return text.split(LINES);
}
module.exports = exports["default"];