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