1 2 3 4 5 6 7 8 9 | 1 1 12 12 1 1 | var EmptyError = (function () { function EmptyError() { this.name = 'EmptyError'; this.message = 'no elements in sequence'; } return EmptyError; })(); exports.EmptyError = EmptyError; //# sourceMappingURL=EmptyError.js.map |