(dec)
| 28 | // * returns 3: 'http://www.google.nl/search?q=php.js&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:en-US:unofficial&client=firefox-a' |
| 29 | |
| 30 | var hexStr = function (dec) { |
| 31 | return '%' + dec.toString(16).toUpperCase(); |
| 32 | }; |
| 33 | |
| 34 | var ret = '', |
| 35 | unreserved = /[\w.-]/; // A-Za-z0-9_.- // Tilde is not here for historical reasons; to preserve it, use rawurlencode instead |
no outgoing calls
no test coverage detected
searching dependent graphs…