wix-style-react
Version:
wix-style-react
15 lines • 405 B
JavaScript
const originalExecCommand = typeof document === 'undefined' ? function () { } : document.execCommand;
const install = () => {
if (typeof document === 'undefined') {
return;
}
document.execCommand = () => { };
};
const uninstall = () => {
document.execCommand = originalExecCommand;
};
export default {
install,
uninstall,
};
//# sourceMappingURL=execCommand-behavior.js.map