build dist

This commit is contained in:
Pawel Bokota
2021-04-23 19:08:34 -04:00
parent 58cd4e3058
commit ea5e3db648
472 changed files with 25268 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var IPropertyDescriptor_1 = require("../IPropertyDescriptor");
var parser_1 = require("../syntax/parser");
exports.fontVariant = {
name: 'font-variant',
initialValue: 'none',
type: IPropertyDescriptor_1.PropertyDescriptorParsingType.LIST,
prefix: false,
parse: function (tokens) {
return tokens.filter(parser_1.isIdentToken).map(function (token) { return token.value; });
}
};
//# sourceMappingURL=font-variant.js.map