summaryrefslogtreecommitdiff
path: root/std/fs
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs')
-rw-r--r--std/fs/_util.ts1
-rw-r--r--std/fs/expand_glob.ts1
-rw-r--r--std/fs/expand_glob_test.ts1
-rw-r--r--std/fs/walk_test.ts1
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";