on-codemerge
Version:
A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product
17 lines (16 loc) • 440 B
JavaScript
var c = Object.defineProperty;
var n = (l, e, t) => e in l ? c(l, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : l[e] = t;
var s = (l, e, t) => n(l, typeof e != "symbol" ? e + "" : e, t);
class y {
constructor(e, t) {
s(this, "cell");
s(this, "newStyle");
this.cell = e, this.newStyle = t;
}
execute() {
Object.assign(this.cell.style, this.newStyle);
}
}
export {
y as StyleTableCellCommand
};