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

package.dist.utils.misc.isDisabled.js Maven / Gradle / Ivy

The newest version!
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.isDisabled = isDisabled;

// This should probably be extended with checking the element type
// https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled
function isDisabled(element) {
  return Boolean(element && element.disabled);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy