UNPKG

stylelint

Version:

A mighty, modern CSS linter.

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