From f113312ef22846ed6414f53de3acf4ce27eff40a Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Thu, 7 Feb 2019 19:45:47 +0300 Subject: Add missiong copyright headers (denoland/deno_std#177) Original: https://github.com/denoland/deno_std/commit/54403774955af0bb5618c0ca6e12c57ec7d5fd0a --- datetime/mod.ts | 1 + datetime/test.ts | 1 + 2 files changed, 2 insertions(+) (limited to 'datetime') 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"; -- cgit v1.2.3