-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rui Marinho
committed
Nov 27, 2017
1 parent
6d558a4
commit c035b34
Showing
10 changed files
with
661 additions
and
429 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
'use strict'; | ||
"use strict"; | ||
|
||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.default = void 0; | ||
|
||
var _standardError = require('standard-error'); | ||
|
||
var _standardError2 = _interopRequireDefault(_standardError); | ||
var _standardError = _interopRequireDefault(require("standard-error")); | ||
|
||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
|
||
/** | ||
* Export `StandardError` class. | ||
* Module dependencies. | ||
*/ | ||
|
||
class StandardError extends _standardError2.default {} | ||
exports.default = StandardError; | ||
/** | ||
* Module dependencies. | ||
* Export `StandardError` class. | ||
*/ | ||
class StandardError extends _standardError.default {} | ||
|
||
module.exports = exports['default']; | ||
exports.default = StandardError; |
Oops, something went wrong.