summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/url/rawurldecode.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 18:02:36 +0100
committerMarvin Borner2018-11-07 18:02:36 +0100
commit824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch)
tree765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/url/rawurldecode.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/url/rawurldecode.js')
-rw-r--r--node_modules/locutus/php/url/rawurldecode.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/node_modules/locutus/php/url/rawurldecode.js b/node_modules/locutus/php/url/rawurldecode.js
new file mode 100644
index 0000000..d2869cc
--- /dev/null
+++ b/node_modules/locutus/php/url/rawurldecode.js
@@ -0,0 +1,28 @@
+'use strict';
+
+module.exports = function rawurldecode(str) {
+ // discuss at: http://locutus.io/php/rawurldecode/
+ // original by: Brett Zamir (http://brett-zamir.me)
+ // input by: travc
+ // input by: Brett Zamir (http://brett-zamir.me)
+ // input by: Ratheous
+ // input by: lovio
+ // bugfixed by: Kevin van Zonneveld (http://kvz.io)
+ // reimplemented by: Brett Zamir (http://brett-zamir.me)
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // note 1: Please be aware that this function expects to decode
+ // note 1: from UTF-8 encoded strings, as found on
+ // note 1: pages served as UTF-8
+ // example 1: rawurldecode('Kevin+van+Zonneveld%21')
+ // returns 1: 'Kevin+van+Zonneveld!'
+ // example 2: rawurldecode('http%3A%2F%2Fkvz.io%2F')
+ // returns 2: 'http://kvz.io/'
+ // example 3: rawurldecode('http%3A%2F%2Fwww.google.nl%2Fsearch%3Fq%3DLocutus%26ie%3D')
+ // returns 3: 'http://www.google.nl/search?q=Locutus&ie='
+
+ return decodeURIComponent((str + '').replace(/%(?![\da-f]{2})/gi, function () {
+ // PHP tolerates poorly formed escape sequences
+ return '%25';
+ }));
+};
+//# sourceMappingURL=rawurldecode.js.map \ No newline at end of file