diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-14 03:06:09 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-14 03:06:09 -0400 |
| commit | 6f59a9588b7d6d53c5f56facb0e33f7faec7b6fe (patch) | |
| tree | cf58f4788bb185845e4a30026b0ac45d917a40b2 /util.ts | |
| parent | aba6a1dc871edbc6cbb286a350a4ba79ca645fb8 (diff) | |
Add tslint, and tenative travis file.
Diffstat (limited to 'util.ts')
| -rw-r--r-- | util.ts | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9,9 +9,10 @@ const globalEval = eval; const _global = globalEval("this"); _global["console"] = { + // tslint:disable-next-line:no-any log(...args: any[]): void { const out: string[] = []; - for (let a of args) { + for (const a of args) { if (typeof(a) === "string") { out.push(a); } else { |
