UNPKG

stylelint-taro-rn

Version:

A collection of React Native specific rules for stylelint

13 lines (11 loc) 274 B
/** * Check whether a string has scss interpolation */ function hasScssInterpolation(string /*: string */) { if (/#{.+?}/.test(string)) { return true; } return false; } export { hasScssInterpolation }; //# sourceMappingURL=hasScssInterpolation.js.map