mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
build dist
This commit is contained in:
14
dist/lib/css/property-descriptors/font-variant.js
vendored
Normal file
14
dist/lib/css/property-descriptors/font-variant.js
vendored
Normal 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
|
||||
Reference in New Issue
Block a user