UNPKG

@wix/css-property-parser

Version:

A comprehensive TypeScript library for parsing and serializing CSS property values with full MDN specification compliance

16 lines (15 loc) 416 B
// Column-gap property parser // https://developer.mozilla.org/en-US/docs/Web/CSS/column-gap import { parseGapProperty, gapToCSSValue } from './shared-gap.js'; /** * Parse a CSS column-gap property string */ export function parse(value) { return parseGapProperty(value); } /** * Convert a parsed column-gap value back to CSS string */ export function toCSSValue(parsed) { return gapToCSSValue(parsed); }