blob: 408852978cb82e351123e3d1894877c861157ace [file] [log] [blame]
/**
* @fileoverview Worker that launches debugger if messaged.
*/
self.onmessage = ({data}) => {
if (data.command === 'break') {
debugger;
}
};
function anotherFunc(a, b) {
return a + b;
}