UNPKG

172 BJavaScriptView Raw
1'use strict';
2
3/**
4 * Check whether a string has scss interpolation
5 *
6 * @param {string} string
7 */
8module.exports = function (string) {
9 return /#{.+?}/.test(string);
10};