You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
218 B
JavaScript
13 lines
218 B
JavaScript
|
8 months ago
|
/**
|
||
|
|
* Executes a given operation type.
|
||
|
|
* @param {String} type
|
||
|
|
* @return {Boolean}
|
||
|
|
*/
|
||
|
|
export default function command(type) {
|
||
|
|
try {
|
||
|
|
return document.execCommand(type);
|
||
|
|
} catch (err) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|