2021-11-22 09:39:27 -06:00

10 lines
264 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function toLines(input) {
if (typeof input !== 'string') {
return [];
}
return input.split(/(?:\r?\n)/);
}
exports.default = toLines;
//# sourceMappingURL=index.js.map