blob: c8012aa716c0641f77b75c30c33df66acc373fd3 [file] [log] [blame]
'use strict';
/**
* Check whether a string has less interpolation
*
* @param {string} string
* @return {boolean} If `true`, a string has less interpolation
*/
module.exports = function (string) {
return /@\{.+?\}/.test(string);
};