UNPKG

stylelint-plugin-logical-css

Version:

A Stylelint plugin to enforce the use of logical CSS properties, values and units.

10 lines (6 loc) 274 B
import { physicalPropertiesMap } from './physicalPropertiesMap.js'; export function isPhysicalProperty(property) { const physicalProperties = Object.keys(physicalPropertiesMap); const propIsPhysical = physicalProperties.includes(property); return propIsPhysical; }