UNPKG

@thi.ng/api

Version:
10 lines (9 loc) 226 B
/** * Class decorator. Seals both constructor and prototype. * * @param constructor - class ctor to seal */ export const sealed = (constructor) => { Object.seal(constructor); Object.seal(constructor.prototype); };