This can happen if the same file is downloaded several times - for example. you have several windows open, and each of them loads utils.js. Each window loaded the same script, but now each of them has a different instance of this script. For the debugger, each instance of the script is different (technically speaking, in JavaScript, which is actually there), and when you set a breakpoint, you can do this on the wrong instance of the script.
source share