fable 3.0.94 → 3.0.95

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3209,7 +3209,8 @@ this.resetOutputBuffer(pParserState);}}// If we aren't in a pattern match or pat
3209
3209
  else{// This may be the start of a new pattern....
3210
3210
  if(pParserState.ParseTree.hasOwnProperty(pCharacter)){// ... assign the root node as the matched node.
3211
3211
  this.resetOutputBuffer(pParserState);this.appendOutputBuffer(pCharacter,pParserState);pParserState.Pattern=pParserState.ParseTree[pCharacter];pParserState.PatternMatch=true;}else{this.appendOutputBuffer(pCharacter,pParserState);}}// Without this, templates of all sizes work fine in node. They do not in the browser.
3212
- return setTimeout(fCallback,0);}/**
3212
+ // Trying this out without the timout on non asynchronous template flips.
3213
+ return fCallback();}/**
3213
3214
  * Parse a string for matches, and process any template segments that occur.
3214
3215
  * @method parseString
3215
3216
  * @param {string} pString - The string to parse.