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