From 804e8b9abf418c2f5f174ec4fb35556a3a4a0afc Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Tue, 23 Feb 2016 14:12:22 -0800 Subject: [PATCH] Appease linter. --- src/compiler/tsc.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/tsc.ts b/src/compiler/tsc.ts index 21e4a7d2693..706d4da92f7 100644 --- a/src/compiler/tsc.ts +++ b/src/compiler/tsc.ts @@ -239,8 +239,8 @@ namespace ts { function isJSONSupported() { return typeof JSON === "object" && typeof JSON.parse === "function"; } - - function isWatchSet(options: CompilerOptions) { + + function isWatchSet(options: CompilerOptions) { // Firefox has Object.prototype.watch return options.watch && options.hasOwnProperty("watch"); }