mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 03:55:32 +00:00
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
const HAS_LESS_INTERPOLATION = /@\{.+?\}/;
|
|
|
|
/**
|
|
* Check whether a string has less interpolation
|
|
*
|
|
* @param {string} string
|
|
* @returns {boolean} If `true`, a string has less interpolation
|
|
*/
|
|
export default function hasLessInterpolation(string) {
|
|
return HAS_LESS_INTERPOLATION.test(string);
|
|
}
|