All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.common.command.js Maven / Gradle / Ivy

/**
 * Executes a given operation type.
 * @param {String} type
 * @return {Boolean}
 */
export default function command(type) {
  try {
    return document.execCommand(type);
  } catch (err) {
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy