UNPKG

stylelint

Version:

A mighty, modern CSS linter.

13 lines (11 loc) 322 B
/* @flow */ 'use strict'; /** * Check whether a string has JS template literal interpolation or HTML-like template * * @param {string} string * @return {boolean} If `true`, a string has template literal interpolation */ module.exports = function(string /*: string*/) /*: boolean*/ { return /{.+?}/.test(string); };