UNPKG

stylelint-taro-rn

Version:

A collection of React Native specific rules for stylelint

13 lines (11 loc) 289 B
/** * Check whether a string has postcss-simple-vars interpolation */ function hasPsvInterpolation(string /*: string */) { if (/\$\(.+?\)/.test(string)) { return true; } return false; } export { hasPsvInterpolation }; //# sourceMappingURL=hasPsvInterpolation.js.map