index.js 264 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. function toLines(input) {
  4. if (typeof input !== 'string') {
  5. return [];
  6. }
  7. return input.split(/(?:\r?\n)/);
  8. }
  9. exports.default = toLines;
  10. //# sourceMappingURL=index.js.map