summaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
Diffstat (limited to 'colors')
-rw-r--r--colors/README.md2
-rw-r--r--colors/main.ts2
-rw-r--r--colors/styles.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/colors/README.md b/colors/README.md
index bdaa3d51e..72845b092 100644
--- a/colors/README.md
+++ b/colors/README.md
@@ -25,4 +25,4 @@ console.log(color.bgBlue.red.bold("Hello world!"));
---
-Copyright 2018 the Deno authors. All rights reserved. MIT license.
+Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
diff --git a/colors/main.ts b/colors/main.ts
index af4e1aace..8316060db 100644
--- a/colors/main.ts
+++ b/colors/main.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { styles } from "./styles.ts";
type Styles = { readonly [S in keyof typeof styles]: Color };
diff --git a/colors/styles.ts b/colors/styles.ts
index 74f609b83..c9fd0eb3d 100644
--- a/colors/styles.ts
+++ b/colors/styles.ts
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
const matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
function escapeStringRegexp(str: string): string {
return str.replace(matchOperatorsRe, "\\$&");