UNPKG

stylelint-taro-rn

Version:

A collection of React Native specific rules for stylelint

7 lines (6 loc) 168 B
/** * Check whether a property is a custom one */ export function isCustomProperty (property /*: string */) /*: boolean */ { return property.slice(0, 2) === '--' }