Throw correct Error object

We've already defined the name Error as a logging function, so we
need to be more explicit when we want to refer to the exception
class.
This commit is contained in:
Pierre Ossman 2019-02-15 13:01:28 +01:00
parent 9e03a98182
commit 47c66517ae
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ export function init_logging(level) {
case 'none': case 'none':
break; break;
default: default:
throw new Error("invalid logging type '" + level + "'"); throw new window.Error("invalid logging type '" + level + "'");
} }
/* eslint-enable no-console, no-fallthrough */ /* eslint-enable no-console, no-fallthrough */
} }