Code coverage report for cjs/util/ArgumentOutOfRangeError.js

Statements: 100% (14 / 14)      Branches: 71.43% (5 / 7)      Functions: 100% (4 / 4)      Lines: 100% (11 / 11)      Ignored: none     

All files » cjs/util/ » ArgumentOutOfRangeError.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 151 2 1 1   1 1 1 10 10   1   1  
var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b) Eif (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var ArgumentOutOfRangeError = (function (_super) {
    __extends(ArgumentOutOfRangeError, _super);
    function ArgumentOutOfRangeError() {
        _super.call(this, 'argument out of range');
        this.name = 'ArgumentOutOfRangeError';
    }
    return ArgumentOutOfRangeError;
})(Error);
exports.ArgumentOutOfRangeError = ArgumentOutOfRangeError;
//# sourceMappingURL=ArgumentOutOfRangeError.js.map