pax_global_header00006660000000000000000000000064131247711430014515gustar00rootroot0000000000000052 comment=52782a347527a6a05fed02434ffcf8f2ba1b19a3 decode-uri-component-0.2.0/000077500000000000000000000000001312477114300155345ustar00rootroot00000000000000decode-uri-component-0.2.0/.editorconfig000066400000000000000000000002761312477114300202160ustar00rootroot00000000000000root = true [*] indent_style = tab end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [{package.json,*.yml}] indent_style = space indent_size = 2 decode-uri-component-0.2.0/.gitattributes000066400000000000000000000000351312477114300204250ustar00rootroot00000000000000* text=auto *.js text eol=lf decode-uri-component-0.2.0/.gitignore000066400000000000000000000000421312477114300175200ustar00rootroot00000000000000node_modules .nyc_output coverage decode-uri-component-0.2.0/.travis.yml000066400000000000000000000001551312477114300176460ustar00rootroot00000000000000language: node_js node_js: - '8' - '6' - '4' - '0.12' - '0.10' after_script: - npm run coveralls decode-uri-component-0.2.0/index.js000066400000000000000000000042621312477114300172050ustar00rootroot00000000000000'use strict'; var token = '%[a-f0-9]{2}'; var singleMatcher = new RegExp(token, 'gi'); var multiMatcher = new RegExp('(' + token + ')+', 'gi'); function decodeComponents(components, split) { try { // Try to decode the entire string first return decodeURIComponent(components.join('')); } catch (err) { // Do nothing } if (components.length === 1) { return components; } split = split || 1; // Split the array in 2 parts var left = components.slice(0, split); var right = components.slice(split); return Array.prototype.concat.call([], decodeComponents(left), decodeComponents(right)); } function decode(input) { try { return decodeURIComponent(input); } catch (err) { var tokens = input.match(singleMatcher); for (var i = 1; i < tokens.length; i++) { input = decodeComponents(tokens, i).join(''); tokens = input.match(singleMatcher); } return input; } } function customDecodeURIComponent(input) { // Keep track of all the replacements and prefill the map with the `BOM` var replaceMap = { '%FE%FF': '\uFFFD\uFFFD', '%FF%FE': '\uFFFD\uFFFD' }; var match = multiMatcher.exec(input); while (match) { try { // Decode as big chunks as possible replaceMap[match[0]] = decodeURIComponent(match[0]); } catch (err) { var result = decode(match[0]); if (result !== match[0]) { replaceMap[match[0]] = result; } } match = multiMatcher.exec(input); } // Add `%C2` at the end of the map to make sure it does not replace the combinator before everything else replaceMap['%C2'] = '\uFFFD'; var entries = Object.keys(replaceMap); for (var i = 0; i < entries.length; i++) { // Replace all decoded components var key = entries[i]; input = input.replace(new RegExp(key, 'g'), replaceMap[key]); } return input; } module.exports = function (encodedURI) { if (typeof encodedURI !== 'string') { throw new TypeError('Expected `encodedURI` to be of type `string`, got `' + typeof encodedURI + '`'); } try { encodedURI = encodedURI.replace(/\+/g, ' '); // Try the built in decoder first return decodeURIComponent(encodedURI); } catch (err) { // Fallback to a more advanced decoder return customDecodeURIComponent(encodedURI); } }; decode-uri-component-0.2.0/license000066400000000000000000000021551312477114300171040ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) Sam Verschueren (github.com/SamVerschueren) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. decode-uri-component-0.2.0/package.json000066400000000000000000000013571312477114300200300ustar00rootroot00000000000000{ "name": "decode-uri-component", "version": "0.2.0", "description": "A better decodeURIComponent", "license": "MIT", "repository": "SamVerschueren/decode-uri-component", "author": { "name": "Sam Verschueren", "email": "sam.verschueren@gmail.com", "url": "github.com/SamVerschueren" }, "engines": { "node": ">=0.10" }, "scripts": { "test": "xo && nyc ava", "coveralls": "nyc report --reporter=text-lcov | coveralls" }, "files": [ "index.js" ], "keywords": [ "decode", "uri", "component", "decodeuricomponent", "components", "decoder", "url" ], "devDependencies": { "ava": "^0.17.0", "coveralls": "^2.13.1", "nyc": "^10.3.2", "xo": "^0.16.0" } } decode-uri-component-0.2.0/readme.md000066400000000000000000000031051312477114300173120ustar00rootroot00000000000000# decode-uri-component [![Build Status](https://travis-ci.org/SamVerschueren/decode-uri-component.svg?branch=master)](https://travis-ci.org/SamVerschueren/decode-uri-component) [![Coverage Status](https://coveralls.io/repos/SamVerschueren/decode-uri-component/badge.svg?branch=master&service=github)](https://coveralls.io/github/SamVerschueren/decode-uri-component?branch=master) > A better [decodeURIComponent](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent) ## Why? - Decodes `+` to a space. - Converts the [BOM](https://en.wikipedia.org/wiki/Byte_order_mark) to a [replacement character](https://en.wikipedia.org/wiki/Specials_(Unicode_block)#Replacement_character) `�`. - Does not throw with invalid encoded input. - Decodes as much of the string as possible. ## Install ``` $ npm install --save decode-uri-component ``` ## Usage ```js const decodeUriComponent = require('decode-uri-component'); decodeUriComponent('%25'); //=> '%' decodeUriComponent('%'); //=> '%' decodeUriComponent('st%C3%A5le'); //=> 'ståle' decodeUriComponent('%st%C3%A5le%'); //=> '%ståle%' decodeUriComponent('%%7Bst%C3%A5le%7D%'); //=> '%{ståle}%' decodeUriComponent('%7B%ab%%7C%de%%7D'); //=> '{%ab%|%de%}' decodeUriComponent('%FE%FF'); //=> '\uFFFD\uFFFD' decodeUriComponent('%C2'); //=> '\uFFFD' decodeUriComponent('%C2%B5'); //=> 'µ' ``` ## API ### decodeUriComponent(encodedURI) #### encodedURI Type: `string` An encoded component of a Uniform Resource Identifier. ## License MIT © [Sam Verschueren](https://github.com/SamVerschueren) decode-uri-component-0.2.0/test.js000066400000000000000000000021661312477114300170560ustar00rootroot00000000000000import test from 'ava'; import m from './'; const tests = { 'test': 'test', 'a+b': 'a b', 'a+b+c+d': 'a b c d', '=a': '=a', '%': '%', '%25': '%', '%%25%%': '%%%%', 'st%C3%A5le': 'ståle', 'st%C3%A5le%': 'ståle%', '%st%C3%A5le%': '%ståle%', '%%7Bst%C3%A5le%7D%': '%{ståle}%', '%ab%C3%A5le%': '%abåle%', '%C3%A5%able%': 'å%able%', '%7B%ab%7C%de%7D': '{%ab|%de}', '%7B%ab%%7C%de%%7D': '{%ab%|%de%}', '%7 B%ab%%7C%de%%7 D': '%7 B%ab%|%de%%7 D', '%ab': '%ab', '%ab%ab%ab': '%ab%ab%ab', '%61+%4d%4D': 'a MM', '\uFEFFtest': '\uFEFFtest', '\uFEFF': '\uFEFF', '%EF%BB%BFtest': '\uFEFFtest', '%EF%BB%BF': '\uFEFF', '%FE%FF': '\uFFFD\uFFFD', '%FF%FE': '\uFFFD\uFFFD', '†': '†', '%C2': '\uFFFD', '%C2x': '\uFFFDx', '%C2%B5': 'µ', '%C2%B5%': 'µ%', '%%C2%B5%': '%µ%' }; function macro(t, input, expected) { t.is(m(input), expected); } macro.title = (providedTitle, input, expected) => `${input} → ${expected}`; test('type error', t => { t.throws(() => m(5), 'Expected `encodedURI` to be of type `string`, got `number`'); }); for (const input of Object.keys(tests)) { test(macro, input, tests[input]); }