main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 5 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
511 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | exports.webkitTextStrokeWidth = void 0;
|
---|
4 | var parser_1 = require("../syntax/parser");
|
---|
5 | exports.webkitTextStrokeWidth = {
|
---|
6 | name: "-webkit-text-stroke-width",
|
---|
7 | initialValue: '0',
|
---|
8 | type: 0 /* VALUE */,
|
---|
9 | prefix: false,
|
---|
10 | parse: function (_context, token) {
|
---|
11 | if (parser_1.isDimensionToken(token)) {
|
---|
12 | return token.number;
|
---|
13 | }
|
---|
14 | return 0;
|
---|
15 | }
|
---|
16 | };
|
---|
17 | //# sourceMappingURL=webkit-text-stroke-width.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.