Looking at some javascript code on someone's website, I see this.
12: [function(t, e, n) {
...
},{}]
And then elsewhere in the file, the function is called this way.
loader: [function(t, e, n) {
...
t(12);
...
}, {}]
I assume function 12 is being injected into the function t.
What tool generates code like this? The website functions very well, and I would like to use their ideas (but not their code) to improve my own website.