File "get-search.js"
Full Path: C:/wamp64/www/INTERPRETE2/backend/node_modules/string_decoder/lib/get-search.js
File size: 296 bytes
MIME-type: text/plain
Charset: utf-8
export const getSearch = parsedURL => {
if (parsedURL.search) {
return parsedURL.search;
}
const lastOffset = parsedURL.href.length - 1;
const hash = parsedURL.hash || (parsedURL.href[lastOffset] === '#' ? '#' : '');
return parsedURL.href[lastOffset - hash.length] === '?' ? '?' : '';
};