Files
skills-here-run-place/node_modules/crossws/dist/shared/crossws.By9qWDAI.mjs
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

9 lines
134 B
JavaScript

class WSError extends Error {
constructor(...args) {
super(...args);
this.name = "WSError";
}
}
export { WSError as W };