UNPKG

@prismadev/webmarine2d

Version:

Core utils for 2D verson of game engine Webmarine

8 lines 249 B
/** Error type for existent items in array */ export class ExistsError extends Error { constructor() { super(...arguments); this.message = 'Array already contains this item'; } } //# sourceMappingURL=ExistsError.js.map