We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8f13f commit 24ef9baCopy full SHA for 24ef9ba
lib/helpers.js
@@ -309,7 +309,7 @@ helpers.attemptTraversal = function (node, traversalPath) {
309
currentNodeList = [],
310
processChildNode = function processChildNode (child) {
311
child.forEach(traversalPath[i], function (n) {
312
- if (n.content && n.content.some && n.contains('interpolation')) {
+ if (n.content && typeof n.content !== 'string' && n.contains('interpolation')) {
313
return false;
314
}
315
return nextNodeList.push(n);
0 commit comments