Sha256: b4faf6129e204ae69ffaba5c5af46ba2f0847c5387a1f9be250ea991c7d0b9da
Contents?: true
Size: 423 Bytes
Versions: 6
Compression:
Stored size: 423 Bytes
Contents
'use strict'; var valid_variants = ['normal', 'small-caps', 'inherit']; module.exports.isValid = function isValid(v) { return valid_variants.indexOf(v.toLowerCase()) !== -1; }; module.exports.definition = { set: function (v) { this._setProperty('font-variant', v); }, get: function () { return this.getPropertyValue('font-variant'); }, enumerable: true, configurable: true };
Version data entries
6 entries across 5 versions & 4 rubygems