From 69f1f53e626bef7628effa64393e8a248a639f2b Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Tue, 23 Feb 2016 12:57:45 -0800 Subject: [PATCH] Fix WS linter errors --- 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"); }