astro-ghostcms/.pnpm-store/v3/files/f4/2a5b9bc71189cd906d6f3910200...

24 lines
540 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
import { Dimension } from '../../tokenizer/index.js';
export const name = 'Dimension';
export const structure = {
value: String,
unit: String
};
export function parse() {
const start = this.tokenStart;
const value = this.consumeNumber(Dimension);
return {
type: 'Dimension',
loc: this.getLocation(start, this.tokenStart),
value,
unit: this.substring(start + value.length, this.tokenStart)
};
}
export function generate(node) {
this.token(Dimension, node.value + node.unit);
}