mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:17:30 -04:00
14 lines
232 B
JavaScript
14 lines
232 B
JavaScript
/* @flow */
|
|
"use strict"
|
|
|
|
/**
|
|
* Check whether a string has postcss-simple-vars interpolation
|
|
*/
|
|
module.exports = function (string/*: string*/)/*: boolean*/ {
|
|
if (/\$\(.+?\)/.test(string)) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|