diff options
author | dubiousjim <dubiousjim@gmail.com> | 2020-03-20 12:10:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-20 12:10:02 -0400 |
commit | 1c6f177d198cb4abe7a126dc543b733fa95376d1 (patch) | |
tree | 23e6310e1b07111b7f986529e73be9da609f88b3 /cli/js/util.ts | |
parent | 69303e21495a14a2c6709f96af364682a485ac21 (diff) |
use prebuilt "not implemented" error (#4442)
Diffstat (limited to 'cli/js/util.ts')
-rw-r--r-- | cli/js/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/util.ts b/cli/js/util.ts index ec39d6f35..692ea6d00 100644 --- a/cli/js/util.ts +++ b/cli/js/util.ts @@ -53,7 +53,7 @@ export function createResolvable<T>(): Resolvable<T> { // @internal export function notImplemented(): never { - throw new Error("Not implemented"); + throw new Error("not implemented"); } // @internal |