1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-28 10:09:20 -05:00

Happy New Year (#58)

This commit is contained in:
Dmitry Sharshakov aka. sh7dm 2019-01-02 17:56:17 +03:00 committed by Ryan Dahl
parent 439885c756
commit e8ec4f7f64
6 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
MIT License
Copyright 2018 the Deno authors.
Copyright 2018-2019 the Deno authors.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -16,4 +16,4 @@ for Deno.
---
Copyright 2018 the Deno authors. All rights reserved. MIT license.
Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.

View file

@ -25,4 +25,4 @@ console.log(color.bgBlue.red.bold("Hello world!"));
---
Copyright 2018 the Deno authors. All rights reserved. MIT license.
Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.

View file

@ -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 { styles } from "./styles.ts";
type Styles = { readonly [S in keyof typeof styles]: Color };

View file

@ -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.
const matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
function escapeStringRegexp(str: string): string {
return str.replace(matchOperatorsRe, "\\$&");

View file

@ -1,5 +1,5 @@
#!/usr/bin/env deno --allow-run
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { readAll, exit, run } from "deno";