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/str_rot13.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 node_modules/locutus/php/strings/str_rot13.js (limited to 'node_modules/locutus/php/strings/str_rot13.js') diff --git a/node_modules/locutus/php/strings/str_rot13.js b/node_modules/locutus/php/strings/str_rot13.js new file mode 100644 index 0000000..3c378c9 --- /dev/null +++ b/node_modules/locutus/php/strings/str_rot13.js @@ -0,0 +1,21 @@ +'use strict'; + +module.exports = function str_rot13(str) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/str_rot13/ + // original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com) + // improved by: Ates Goral (http://magnetiq.com) + // improved by: RafaƂ Kukawski (http://blog.kukawski.pl) + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // example 1: str_rot13('Kevin van Zonneveld') + // returns 1: 'Xriva ina Mbaariryq' + // example 2: str_rot13('Xriva ina Mbaariryq') + // returns 2: 'Kevin van Zonneveld' + // example 3: str_rot13(33) + // returns 3: '33' + + return (str + '').replace(/[a-z]/gi, function (s) { + return String.fromCharCode(s.charCodeAt(0) + (s.toLowerCase() < 'n' ? 13 : -13)); + }); +}; +//# sourceMappingURL=str_rot13.js.map \ No newline at end of file -- cgit v1.2.3