How to use the hash function from url
Find comprehensive JavaScript url.hash code examples handpicked from public code repositorys.
125 126 127 128 129 130 131 132 133 134
``` *Note*: This feature is only available if the `node` executable was compiled with [ICU][] enabled. If not, the domain names are passed through unchanged. #### url.hash * {string} Gets and sets the fragment portion of the URL.
19
213
17
+ 13 other calls in file
6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023
result += url.host + url.pathname; query = 'object' === typeof url.query ? stringify(url.query) : url.query; if (query) result += '?' !== query.charAt(0) ? '?'+ query : query; if (url.hash) result += url.hash; return result; }
0
0
1