summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-01-01 19:58:40 -0500
committerBert Belder <bertbelder@gmail.com>2019-01-02 02:37:08 +0100
commit2c477dd7cb37d37f4c8bcf7fd159c08c4cfa1ac1 (patch)
tree297808e92eb2d3be1527f89adc182b66c547d320 /js
parent320577c131c8058ba0065f26119ce1ce18bc23d2 (diff)
Happy new year!
Diffstat (limited to 'js')
-rw-r--r--js/assets.ts2
-rw-r--r--js/blob.ts2
-rw-r--r--js/blob_test.ts2
-rw-r--r--js/chmod.ts2
-rw-r--r--js/chmod_test.ts2
-rw-r--r--js/compiler.ts2
-rw-r--r--js/compiler_test.ts2
-rw-r--r--js/console.ts2
-rw-r--r--js/console_test.ts2
-rw-r--r--js/copy_file.ts2
-rw-r--r--js/copy_file_test.ts2
-rw-r--r--js/deno.ts2
12 files changed, 12 insertions, 12 deletions
diff --git a/js/assets.ts b/js/assets.ts
index 2344cfc04..773612b26 100644
--- a/js/assets.ts
+++ b/js/assets.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.
// tslint:disable-next-line:no-reference
/// <reference path="./plugins.d.ts" />
diff --git a/js/blob.ts b/js/blob.ts
index 4717a28fb..96aae496e 100644
--- a/js/blob.ts
+++ b/js/blob.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 * as domTypes from "./dom_types";
import { containsOnlyASCII } from "./util";
import { TextEncoder } from "./text_encoding";
diff --git a/js/blob_test.ts b/js/blob_test.ts
index 293d475dd..142554167 100644
--- a/js/blob_test.ts
+++ b/js/blob_test.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 { test, assert, assertEqual } from "./test_util.ts";
test(async function blobString() {
diff --git a/js/chmod.ts b/js/chmod.ts
index 385e6345d..74b211f84 100644
--- a/js/chmod.ts
+++ b/js/chmod.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 * as msg from "gen/msg_generated";
import * as flatbuffers from "./flatbuffers";
import * as dispatch from "./dispatch";
diff --git a/js/chmod_test.ts b/js/chmod_test.ts
index f731a026e..75f4524db 100644
--- a/js/chmod_test.ts
+++ b/js/chmod_test.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 { testPerm, assertEqual } from "./test_util.ts";
import * as deno from "deno";
diff --git a/js/compiler.ts b/js/compiler.ts
index 5031fb0bf..ceb11f861 100644
--- a/js/compiler.ts
+++ b/js/compiler.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 * as ts from "typescript";
import { MediaType } from "gen/msg_generated";
diff --git a/js/compiler_test.ts b/js/compiler_test.ts
index 8afe64d7f..21aab180a 100644
--- a/js/compiler_test.ts
+++ b/js/compiler_test.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 { test, assert, assertEqual } from "./test_util.ts";
import * as deno from "deno";
import * as ts from "typescript";
diff --git a/js/console.ts b/js/console.ts
index 396def545..456d3485e 100644
--- a/js/console.ts
+++ b/js/console.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 { isTypedArray } from "./util";
// tslint:disable-next-line:no-any
diff --git a/js/console_test.ts b/js/console_test.ts
index e3349054b..3f045db86 100644
--- a/js/console_test.ts
+++ b/js/console_test.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 { Console, libdeno, stringifyArgs, inspect } from "deno";
import { test, assert, assertEqual } from "./test_util.ts";
diff --git a/js/copy_file.ts b/js/copy_file.ts
index 255d977bf..a4e8d210c 100644
--- a/js/copy_file.ts
+++ b/js/copy_file.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 * as msg from "gen/msg_generated";
import * as flatbuffers from "./flatbuffers";
import * as dispatch from "./dispatch";
diff --git a/js/copy_file_test.ts b/js/copy_file_test.ts
index 807fbb9d0..02f13c6f3 100644
--- a/js/copy_file_test.ts
+++ b/js/copy_file_test.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 { testPerm, assert, assertEqual } from "./test_util.ts";
import * as deno from "deno";
diff --git a/js/deno.ts b/js/deno.ts
index 86a6990d6..2e82613e8 100644
--- a/js/deno.ts
+++ b/js/deno.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.
// Public deno module.
/// <amd-module name="deno"/>