UNPKG

124 BJavaScriptView Raw
1const sealed = (constructor) => {
2 Object.seal(constructor);
3 Object.seal(constructor.prototype);
4};
5export {
6 sealed
7};