blob: 488c1300d96393484f58b46cc35557ee4323e148 [file] [edit]
'use strict';
/**
* Check whether a string has scss interpolation
*
* @param {string} string
*/
module.exports = function (string) {
return /#{.+?}/.test(string);
};