1
0
Fork 0
mirror of synced 2024-09-10 14:35:47 +12:00

Merge pull request #8345 from Budibase/fix/hbs-non-string-types

Ensure non string types are ignored when searching for HBS blocks
This commit is contained in:
Andrew Kingston 2022-10-21 10:48:27 +01:00 committed by GitHub
commit fbabf46902

View file

@ -323,6 +323,9 @@ module.exports.doesContainStrings = (template, strings) => {
* @return {string[]} The found HBS blocks.
*/
module.exports.findHBSBlocks = string => {
if (!string || typeof string !== "string") {
return []
}
let regexp = new RegExp(FIND_ANY_HBS_REGEX)
let matches = string.match(regexp)
if (matches == null) {