diff options
Diffstat (limited to 'node_modules/tslint/lib/error.js')
-rw-r--r-- | node_modules/tslint/lib/error.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/tslint/lib/error.js b/node_modules/tslint/lib/error.js index c21a7f3ec..beee3de3d 100644 --- a/node_modules/tslint/lib/error.js +++ b/node_modules/tslint/lib/error.js @@ -31,9 +31,9 @@ var FatalError = (function (_super) { _this.stack = new Error().stack; return _this; } + FatalError.NAME = "FatalError"; return FatalError; }(Error)); -FatalError.NAME = "FatalError"; exports.FatalError = FatalError; function isError(possibleError) { return possibleError != null && possibleError.message !== undefined; |