UNPKG

nl

Version:

Convert linebreaks into newline characters ( )

14 lines (10 loc) 131 B
/** * Export `nl` */ module.exports = nl; /** * Initialize `nl` */ function nl(str) { return str.replace(/\n/g, '\\n'); }