UNPKG

@daysnap/utils

Version:
13 lines (8 loc) 298 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/crlfToBr.ts function crlfToBr(v) { return v ? v.replace(/\r|\n/gi, "<br/>") : v; } function filterCRLF(v) { return v.replace(/\r|\n/gi, "<br/>"); } exports.crlfToBr = crlfToBr; exports.filterCRLF = filterCRLF;