-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Closed
Labels
Description
Error: Parsing file /wireframes/node_modules/vue/dist/vue.common.js: Line 6278: Invalid regular expression
I get a parse error, these seem to be the offending lines.
var defaultTagRE = /\{\{((?:.|\n)+?)\}\}/g;
var regexEscapeRE = /[-.*+?^${}()|[\]/\\]/g;
var buildRegex = cached(function (delimiters) {
var open = delimiters[0].replace(regexEscapeRE, '\\$&');
var close = delimiters[1].replace(regexEscapeRE, '\\$&');
return new RegExp(open + '((?:.|\\n)+?)' + close, 'g')
});