Merge pull request #7202 from RyanCavanaugh/fixlint

Fix WS linter errors
This commit is contained in:
Ryan Cavanaugh
2016-02-23 13:25:06 -08:00

View File

@@ -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");
}