We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider this- it compiles fine:
module.exports = FileSchema.extend url: type: String match: /.*\.[wav,mp3,mp4,aif,aiff]/ required: true meta: type: mongoose.Schema.Types.Mixed # something: true , {collection: 'audios'}
However, this doesn't- and it throws an error (Error on line 11: unexpected ,):
Error on line 11: unexpected ,
module.exports = FileSchema.extend url: type: String match: /.*\.[wav,mp3,mp4,aif,aiff]/ required: true meta: type: mongoose.Schema.Types.Mixed ### something: true ### , {collection: 'audios'}
Should it not just ignore everything that's within the block comment and compile it as if it weren't there?
The text was updated successfully, but these errors were encountered:
#2805, #1559, #2973, #2025, #2445, #1925, #2344, #1375, #3159.
Sorry, something went wrong.
Wow. That's an impressive amount of duplicates! 😳
I did do a search for 'block comment', clearly didn't delve deeply enough. Sorry!
This is fixed via #4572. Sorry it took awhile.
No branches or pull requests
Consider this- it compiles fine:
However, this doesn't- and it throws an error (
Error on line 11: unexpected ,
):Should it not just ignore everything that's within the block comment and compile it as if it weren't there?
The text was updated successfully, but these errors were encountered: