mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:27:15 -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
|
||
|
}
|