UNPKG

@minilibs/ip2geo

Version:

Ip to Geo location instantly ⚡

14 lines (10 loc) 336 B
'use strict'; 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] === '?' ? '?' : ''; }; exports.getSearch = getSearch;