diff options
Diffstat (limited to 'tools/util.ts')
-rw-r--r-- | tools/util.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/util.ts b/tools/util.ts index c055959fe..9d8ad0f1f 100644 --- a/tools/util.ts +++ b/tools/util.ts @@ -1,7 +1,8 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -import { platform, lstatSync, readDirSync } from "deno"; import { join } from "../js/deps/https/deno.land/x/std/fs/path/mod.ts"; +const { platform, lstatSync, readDirSync } = Deno; + export interface FindOptions { skip?: string[]; depth?: number; |