Files
Kmake/test/fixtures/source-map/uglify-throw-original.js
2026-05-26 23:36:42 -07:00

11 lines
127 B
JavaScript

/*
* comments dropped by uglify.
*/
function Hello() {
throw Error('goodbye');
}
setImmediate(function() {
Hello();
});