summaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
authorDmitry Sharshakov <sh7dm@outlook.com>2019-02-07 19:45:47 +0300
committerRyan Dahl <ry@tinyclouds.org>2019-02-07 11:45:47 -0500
commitf113312ef22846ed6414f53de3acf4ce27eff40a (patch)
treeeb6dda89bc459d64b3e05b81423216625ebc49c6 /colors
parentdc1cef498f4f9b704bf83e7173234262bf11ee44 (diff)
Add missiong copyright headers (denoland/deno_std#177)
Original: https://github.com/denoland/deno_std/commit/54403774955af0bb5618c0ca6e12c57ec7d5fd0a
Diffstat (limited to 'colors')
-rw-r--r--colors/example.ts1
-rw-r--r--colors/test.ts1
2 files changed, 2 insertions, 0 deletions
diff --git a/colors/example.ts b/colors/example.ts
index 02bc93432..c6bbd614d 100644
--- a/colors/example.ts
+++ b/colors/example.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { bgBlue, red, bold, italic } from "./mod.ts";
console.log(bgBlue(italic(red(bold("Hello world!")))));
diff --git a/colors/test.ts b/colors/test.ts
index f12f0cbb1..bdce35523 100644
--- a/colors/test.ts
+++ b/colors/test.ts
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { assert, test } from "../testing/mod.ts";
import { red, bgBlue, setEnabled, getEnabled } from "./mod.ts";
import "./example.ts";