mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
'use strict';
|
|
|
|
const HAS_SCSS_INTERPOLATION = /#\{.+?\}/;
|
|
|
|
/**
|
|
* Check whether a string has scss interpolation
|
|
*
|
|
* @param {string} string
|
|
*/
|
|
module.exports = function hasScssInterpolation(string) {
|
|
return HAS_SCSS_INTERPOLATION.test(string);
|
|
};
|