136589f1e46003c5ab3f9160c751fc32647277206419b0037832e9b2f79a1668b6836a9f38ff7cb1c119acc2ef97b0c97b7625199c1cdef85343879b50ffd1 452 B

12345678910111213
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. var EmptyErrorImpl = /*@__PURE__*/ (function () {
  3. function EmptyErrorImpl() {
  4. Error.call(this);
  5. this.message = 'no elements in sequence';
  6. this.name = 'EmptyError';
  7. return this;
  8. }
  9. EmptyErrorImpl.prototype = /*@__PURE__*/ Object.create(Error.prototype);
  10. return EmptyErrorImpl;
  11. })();
  12. export var EmptyError = EmptyErrorImpl;
  13. //# sourceMappingURL=EmptyError.js.map