Closed floss-51nullacht closed 1 year ago
Hi, in https://github.com/codemirror/codemirror5/blob/53faa33ac69598b7495e160824b58ebb8d70fe97/src/util/misc.js#L124 is written var nonASCIISingleCaseWordChar = [...]ud7af]/ without a trailing semicolon and followed by a function.
var nonASCIISingleCaseWordChar = [...]ud7af]/
In a minified version ist becomes ... ]/function ... wich ends in an error. Best
... ]/function ...
In a minified version ist becomes ... ]/function ... wich ends in an error.
Only if the minifier is broken. If the file we distribute runs, I don't consider this an issue in CodeMirror.
Hi, in https://github.com/codemirror/codemirror5/blob/53faa33ac69598b7495e160824b58ebb8d70fe97/src/util/misc.js#L124 is written
var nonASCIISingleCaseWordChar = [...]ud7af]/
without a trailing semicolon and followed by a function.In a minified version ist becomes
... ]/function ...
wich ends in an error. Best