mirror of
https://github.com/denoland/deno.git
synced 2024-12-31 19:44:10 -05:00
Happy New Year (#58)
This commit is contained in:
parent
439885c756
commit
e8ec4f7f64
6 changed files with 6 additions and 6 deletions
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
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
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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";
|
import { styles } from "./styles.ts";
|
||||||
|
|
||||||
type Styles = { readonly [S in keyof typeof styles]: Color };
|
type Styles = { readonly [S in keyof typeof styles]: Color };
|
||||||
|
|
|
@ -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;
|
const matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
|
||||||
function escapeStringRegexp(str: string): string {
|
function escapeStringRegexp(str: string): string {
|
||||||
return str.replace(matchOperatorsRe, "\\$&");
|
return str.replace(matchOperatorsRe, "\\$&");
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env deno --allow-run
|
#!/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";
|
import { readAll, exit, run } from "deno";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue