JQuery recently started using source maps.
For example, consider a miniature jQuery 2.0.3 file in the first few lines.
/*! jQuery v2.0.3 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license //@ sourceMappingURL=jquery.min.map */
Excerpt from Introduction to JavaScript Source Maps :
Have you ever wanted you to be able to keep your client-side code readable and, more importantly, debugged even after you combine and minimize it without affecting performance? Ok, now you can through the magic of the source cards.
This is basically a way to map a merged / mini file to an undeveloped state . When you create for production, along with combining your JavaScript files, you create a source map that runs information about your source files. When you request a specific row and column number in your generated JavaScript, you can do a search in the original map, which returns the original location . Developer tools (currently new to WebKit, Google Chrome, or Firefox 23+) can automatically analyze the source map and make it look like you are running unminified and uncombined files.
This is incredibly useful and will only load if the user opens developer tools.
Decision
Delete the source mapping line or do nothing. It's not a problem.
Side note: your server should return 404, not 500. It may indicate a security problem if this happens during production.
FakeRainBrigand Aug 28 '13 at 23:33 2013-08-28 23:33
source share