diff options
author | Ry Dahl <ry@tinyclouds.org> | 2020-01-02 15:13:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 15:13:47 -0500 |
commit | bfab4ed0dfa5e2034005133a257201c934bc3a80 (patch) | |
tree | cd53471ad241770d3cd9a9da6246463d92e0ebeb /std/flags | |
parent | b0761138e5d2486c241ab8fdfa67fe2c2a0b621b (diff) |
Happy new year! (#3578)
Diffstat (limited to 'std/flags')
-rwxr-xr-x | std/flags/all_bool_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/bool_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/dash_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/default_bool_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/dotted_test.ts | 2 | ||||
-rw-r--r-- | std/flags/example.ts | 2 | ||||
-rwxr-xr-x | std/flags/kv_short_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/long_test.ts | 2 | ||||
-rw-r--r-- | std/flags/mod.ts | 2 | ||||
-rwxr-xr-x | std/flags/num_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/parse_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/short_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/stop_early_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/unknown_test.ts | 2 | ||||
-rwxr-xr-x | std/flags/whitespace_test.ts | 2 |
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"; |