stringify
stringify copied to clipboard
Stringify adding  to beginning of html
I modified the source to stop the 'ZERO WIDTH NO-BREAK SPACE' character from appearing at the beginning of all the html. I am using browserify and stringify together.
function stringify(content) { content = content.replace(/^\uFEFF/, ''); return 'module.exports = ' + JSON.stringify(content) + ';\n'; }
Do you have a repro for this?