summaryrefslogtreecommitdiff
path: root/std/flags
diff options
context:
space:
mode:
Diffstat (limited to 'std/flags')
-rwxr-xr-xstd/flags/all_bool_test.ts2
-rwxr-xr-xstd/flags/bool_test.ts2
-rwxr-xr-xstd/flags/dash_test.ts2
-rwxr-xr-xstd/flags/default_bool_test.ts2
-rwxr-xr-xstd/flags/dotted_test.ts2
-rw-r--r--std/flags/example.ts2
-rwxr-xr-xstd/flags/kv_short_test.ts2
-rwxr-xr-xstd/flags/long_test.ts2
-rw-r--r--std/flags/mod.ts2
-rwxr-xr-xstd/flags/num_test.ts2
-rwxr-xr-xstd/flags/parse_test.ts2
-rwxr-xr-xstd/flags/short_test.ts2
-rwxr-xr-xstd/flags/stop_early_test.ts2
-rwxr-xr-xstd/flags/unknown_test.ts2
-rwxr-xr-xstd/flags/whitespace_test.ts2
15 files changed, 15 insertions, 15 deletions
diff --git a/std/flags/all_bool_test.ts b/std/flags/all_bool_test.ts
index 711bf3da1..d738d1afc 100755
--- a/std/flags/all_bool_test.ts
+++ b/std/flags/all_bool_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/bool_test.ts b/std/flags/bool_test.ts
index 5ef052e2c..fd3b6487f 100755
--- a/std/flags/bool_test.ts
+++ b/std/flags/bool_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/dash_test.ts b/std/flags/dash_test.ts
index f4901b352..053351fbd 100755
--- a/std/flags/dash_test.ts
+++ b/std/flags/dash_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/default_bool_test.ts b/std/flags/default_bool_test.ts
index dc953cdc8..bf44f5b47 100755
--- a/std/flags/default_bool_test.ts
+++ b/std/flags/default_bool_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/dotted_test.ts b/std/flags/dotted_test.ts
index 3ec7409e7..6b98d11d0 100755
--- a/std/flags/dotted_test.ts
+++ b/std/flags/dotted_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/example.ts b/std/flags/example.ts
index 04ace4673..ad0317269 100644
--- a/std/flags/example.ts
+++ b/std/flags/example.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const { args } = Deno;
import { parse } from "./mod.ts";
diff --git a/std/flags/kv_short_test.ts b/std/flags/kv_short_test.ts
index 271e5c67d..e5aec0fd2 100755
--- a/std/flags/kv_short_test.ts
+++ b/std/flags/kv_short_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/long_test.ts b/std/flags/long_test.ts
index 5b14fc630..7c19efaca 100755
--- a/std/flags/long_test.ts
+++ b/std/flags/long_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/mod.ts b/std/flags/mod.ts
index 19defd1ed..5f4b18a18 100644
--- a/std/flags/mod.ts
+++ b/std/flags/mod.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
export interface ArgParsingOptions {
unknown?: (i: unknown) => unknown;
boolean?: boolean | string | string[];
diff --git a/std/flags/num_test.ts b/std/flags/num_test.ts
index 1123f7ecc..265a4a3d4 100755
--- a/std/flags/num_test.ts
+++ b/std/flags/num_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/parse_test.ts b/std/flags/parse_test.ts
index 9918ce8bb..6ed158a9a 100755
--- a/std/flags/parse_test.ts
+++ b/std/flags/parse_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/short_test.ts b/std/flags/short_test.ts
index f624381b1..ff0190437 100755
--- a/std/flags/short_test.ts
+++ b/std/flags/short_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/stop_early_test.ts b/std/flags/stop_early_test.ts
index 144a2921f..f054d780b 100755
--- a/std/flags/stop_early_test.ts
+++ b/std/flags/stop_early_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/unknown_test.ts b/std/flags/unknown_test.ts
index dde725a75..b7817564c 100755
--- a/std/flags/unknown_test.ts
+++ b/std/flags/unknown_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";
diff --git a/std/flags/whitespace_test.ts b/std/flags/whitespace_test.ts
index 9e6ba7115..9f66dfdfc 100755
--- a/std/flags/whitespace_test.ts
+++ b/std/flags/whitespace_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { parse } from "./mod.ts";