module.exports = function disabled() {
  return this.getAttribute('disabled').then(function(value) {
    return value !== null;
  });
};