Sha256: 1fa9187368d5400dd984bfb265715e77df28c5d2e055e553ff0f1c0725224888
Contents?: true
Size: 172 Bytes
Versions: 24
Compression:
Stored size: 172 Bytes
Contents
'use strict'; /** * Check whether a string has scss interpolation * * @param {string} string */ module.exports = function (string) { return /#{.+?}/.test(string); };
Version data entries
24 entries across 24 versions & 1 rubygems