UNPKG

stylelint-wechat-work-css

Version:

Special stylelint rules for `wechat at work` project css

16 lines (13 loc) 270 B
'use strict' /** * Check whether a string has scss interpolation * * @param {string} string * @return {boolean} If `true`, a string has scss interpolation */ module.exports = function (string) { if (/#{.+?}/.test(string)) { return true } return false }