11 lines
172 B
JavaScript
11 lines
172 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Check whether a string has scss interpolation
|
|
*
|
|
* @param {string} string
|
|
*/
|
|
module.exports = function (string) {
|
|
return /#{.+?}/.test(string);
|
|
};
|