diff options
author | tokiedokie <thetokiedokie@gmail.com> | 2020-09-21 21:26:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 08:26:41 -0400 |
commit | c4ed3fb7e767311dc5a6fc931fceaf4fdee885de (patch) | |
tree | f1f820de8f33d89adeda440f3a218052e5329c12 /std/fs | |
parent | dc6571909ba446fc732b2c6a48742eb4b9614513 (diff) |
chore: add copyright (#7593)
Diffstat (limited to 'std/fs')
-rw-r--r-- | std/fs/_util.ts | 1 | ||||
-rw-r--r-- | std/fs/expand_glob.ts | 1 | ||||
-rw-r--r-- | std/fs/expand_glob_test.ts | 1 | ||||
-rw-r--r-- | std/fs/walk_test.ts | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/std/fs/_util.ts b/std/fs/_util.ts index 6866526cd..95e9f0894 100644 --- a/std/fs/_util.ts +++ b/std/fs/_util.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import * as path from "../path/mod.ts"; /** diff --git a/std/fs/expand_glob.ts b/std/fs/expand_glob.ts index 7d9f0d870..267d7a8c0 100644 --- a/std/fs/expand_glob.ts +++ b/std/fs/expand_glob.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { GlobOptions, SEP_PATTERN, diff --git a/std/fs/expand_glob_test.ts b/std/fs/expand_glob_test.ts index 8b4a90754..49c7bf143 100644 --- a/std/fs/expand_glob_test.ts +++ b/std/fs/expand_glob_test.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { decode } from "../encoding/utf8.ts"; import { assert, diff --git a/std/fs/walk_test.ts b/std/fs/walk_test.ts index df4525b95..1352ce448 100644 --- a/std/fs/walk_test.ts +++ b/std/fs/walk_test.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { walk, walkSync, WalkOptions, WalkEntry } from "./walk.ts"; import { assert, assertEquals, assertThrowsAsync } from "../testing/asserts.ts"; |