Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
534 B
Plaintext
17 lines
534 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.listStyleImage = void 0;
|
|
var image_1 = require("../types/image");
|
|
exports.listStyleImage = {
|
|
name: 'list-style-image',
|
|
initialValue: 'none',
|
|
type: 0 /* VALUE */,
|
|
prefix: false,
|
|
parse: function (context, token) {
|
|
if (token.type === 20 /* IDENT_TOKEN */ && token.value === 'none') {
|
|
return null;
|
|
}
|
|
return image_1.image.parse(context, token);
|
|
}
|
|
};
|
|
//# sourceMappingURL=list-style-image.js.map |