Sha256: b461e8a63bbae455c632c31dacf7970a526b10580d4b9660bc0d944771d745d8

Contents?: true

Size: 831 Bytes

Versions: 3

Compression:

Stored size: 831 Bytes

Contents

(function() {
  var Appearance, Declaration,
    extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
    hasProp = {}.hasOwnProperty;

  Declaration = require('../declaration');

  Appearance = (function(superClass) {
    extend(Appearance, superClass);

    function Appearance() {
      return Appearance.__super__.constructor.apply(this, arguments);
    }

    Appearance.names = ['appearance'];

    Appearance.prototype.check = function(decl) {
      return decl.value.toLowerCase() === 'none';
    };

    return Appearance;

  })(Declaration);

  module.exports = Appearance;

}).call(this);

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gulp_assets-1.0.0.pre.5 template/node_modules/autoprefixer/lib/hacks/appearance.js
gulp_assets-1.0.0.pre.4 template/node_modules/autoprefixer/lib/hacks/appearance.js
gulp_assets-1.0.0.pre.3 template/node_modules/autoprefixer/lib/hacks/appearance.js