-1

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.

user2171796
  • 397
  • 2
  • 16

1 Answers1

0

It is New Relic stuff. New Relic inserts code to assist them in monitoring.

https://discuss.newrelic.com/t/i-captured-this-nreum-thingy-and-dont-know-what-it-does/13523

So it doesn't help me to make a smooth-running website like that of the website I'm looking at. Unless New Relic identifying hotspots has that much effect.

user2171796
  • 397
  • 2
  • 16