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