UNPKG

wix-style-react

Version:
15 lines 405 B
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