4f2a6fd2ce7acfc73ca3ca912a678e6542c6c82ab9490bc783397439d0db87474583d74c7e77b7929156dea3fec3955ca0681b400052594ff40ce80fd9c64d 377 B

123456789101112
  1. const EmptyErrorImpl = (() => {
  2. function EmptyErrorImpl() {
  3. Error.call(this);
  4. this.message = 'no elements in sequence';
  5. this.name = 'EmptyError';
  6. return this;
  7. }
  8. EmptyErrorImpl.prototype = Object.create(Error.prototype);
  9. return EmptyErrorImpl;
  10. })();
  11. export const EmptyError = EmptyErrorImpl;
  12. //# sourceMappingURL=EmptyError.js.map