UNPKG
nl
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Convert linebreaks into newline characters ( )
github.com/lapwinglabs/nl
lapwinglabs/nl
nl
/
index.js
14 lines
(10 loc)
•
131 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * Export `
nl
` */ module.exports =
nl
; /** * Initialize `
nl
` */
function
nl
(str) {
return
str.replace(/\n/g,
'\\n'
); }