beam_js/js/index.mjs

15 lines
202 B
JavaScript
Raw Permalink Normal View History

2026-03-30 20:43:34 +00:00
class Boxed {
constructor(type, value) {
this.type = type;
this.value = value;
}
}
export const boxed = (type, value) => {
return new Boxed(type, value);
};
export default {
boxed,
};