diff options
Diffstat (limited to 'datetime')
-rw-r--r-- | datetime/mod.ts | 1 | ||||
-rw-r--r-- | datetime/test.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/datetime/mod.ts b/datetime/mod.ts index 5a967925d..f30fc89c9 100644 --- a/datetime/mod.ts +++ b/datetime/mod.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. export type DateFormat = "mm-dd-yyyy" | "dd-mm-yyyy" | "yyyy-mm-dd"; /** diff --git a/datetime/test.ts b/datetime/test.ts index ce8193dfb..65577420b 100644 --- a/datetime/test.ts +++ b/datetime/test.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { test, assertEqual, assert } from "../testing/mod.ts"; import * as datetime from "mod.ts"; |