1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Merge pull request #68 from b3rnd/master

Update punycode.js
This commit is contained in:
Raymond Hill 2015-04-16 09:48:08 -04:00
commit 41d4c8ecc6

View File

@ -64,7 +64,7 @@
* @returns {Error} Throws a `RangeError` with the applicable error message.
*/
function error(type) {
throw RangeError(errors[type]);
throw new RangeError(errors[type]);
}
/**