From 824a2d9f587ca017fc71b84d835e72f54f9c87c4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 18:02:36 +0100 Subject: Began rewrite --- node_modules/locutus/php/strings/nl2br.js | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 node_modules/locutus/php/strings/nl2br.js (limited to 'node_modules/locutus/php/strings/nl2br.js') diff --git a/node_modules/locutus/php/strings/nl2br.js b/node_modules/locutus/php/strings/nl2br.js new file mode 100644 index 0000000..d740445 --- /dev/null +++ b/node_modules/locutus/php/strings/nl2br.js @@ -0,0 +1,34 @@ +'use strict'; + +module.exports = function nl2br(str, isXhtml) { + // discuss at: http://locutus.io/php/nl2br/ + // original by: Kevin van Zonneveld (http://kvz.io) + // improved by: Philip Peterson + // improved by: Onno Marsman (https://twitter.com/onnomarsman) + // improved by: Atli Þór + // improved by: Brett Zamir (http://brett-zamir.me) + // improved by: Maximusya + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // bugfixed by: Kevin van Zonneveld (http://kvz.io) + // bugfixed by: Reynier de la Rosa (http://scriptinside.blogspot.com.es/) + // input by: Brett Zamir (http://brett-zamir.me) + // example 1: nl2br('Kevin\nvan\nZonneveld') + // returns 1: 'Kevin
\nvan
\nZonneveld' + // example 2: nl2br("\nOne\nTwo\n\nThree\n", false) + // returns 2: '
\nOne
\nTwo
\n
\nThree
\n' + // example 3: nl2br("\nOne\nTwo\n\nThree\n", true) + // returns 3: '
\nOne
\nTwo
\n
\nThree
\n' + // example 4: nl2br(null) + // returns 4: '' + + // Some latest browsers when str is null return and unexpected null value + if (typeof str === 'undefined' || str === null) { + return ''; + } + + // Adjust comment to avoid issue on locutus.io display + var breakTag = isXhtml || typeof isXhtml === 'undefined' ? '
' : '
'; + + return (str + '').replace(/(\r\n|\n\r|\r|\n)/g, breakTag + '$1'); +}; +//# sourceMappingURL=nl2br.js.map \ No newline at end of file -- cgit v1.2.3