postcss-values-parser
Version:
A CSS property value parser for use with PostCSS
15 lines • 427 B
JavaScript
import { Node } from './Node.js';
export class Punctuation extends Node {
constructor(options) {
super(options);
this.type = 'punctuation';
if (options && options.node) {
const node = options.node;
this.value = node.value;
}
else if (options && options.value) {
this.value = options.value;
}
}
}
//# sourceMappingURL=Punctuation.js.map