UNPKG

ec0lint-style

Version:

CSS linter for reducing digital footprint with ec0lint.

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