From e1687c0a4616e90d4bbde42b13a0356a7f6a1e7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 24 Feb 2020 15:48:35 -0500 Subject: rename Deno.Err -> Deno.errors (#4093) --- std/node/module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/node/module.ts') diff --git a/std/node/module.ts b/std/node/module.ts index aecf03ede..3520d804b 100644 --- a/std/node/module.ts +++ b/std/node/module.ts @@ -57,7 +57,7 @@ function stat(filename: string): StatResult { if (statCache !== null) statCache.set(filename, result); return result; } catch (e) { - if (e instanceof Deno.Err.PermissionDenied) { + if (e instanceof Deno.errors.PermissionDenied) { throw new Error("CJS loader requires --allow-read."); } return -1; -- cgit v1.2.3