Fix WS linter errors

This commit is contained in:
Ryan Cavanaugh 2016-02-23 12:57:45 -08:00
parent 7ae6fcd65e
commit 69f1f53e62

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