wix-style-react
Version:
wix-style-react
19 lines (18 loc) • 466 B
JavaScript
;
exports.__esModule = true;
exports.default = void 0;
var originalExecCommand = typeof document === 'undefined' ? function () {} : document.execCommand;
var install = () => {
if (typeof document === 'undefined') {
return;
}
document.execCommand = () => {};
};
var uninstall = () => {
document.execCommand = originalExecCommand;
};
var _default = exports.default = {
install,
uninstall
};
//# sourceMappingURL=execCommand-behavior.js.map