mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 03:55:32 +00:00
12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
const HAS_SCSS_INTERPOLATION = /#\{.+?\}/s;
|
|
|
|
/**
|
|
* Check whether a string has scss interpolation
|
|
*
|
|
* @param {string} string
|
|
* @returns {boolean}
|
|
*/
|
|
export default function hasScssInterpolation(string) {
|
|
return HAS_SCSS_INTERPOLATION.test(string);
|
|
}
|