blob: b3afa83e23fe58e2e0d6d17b8bc704652f9a0bbf [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);
};