I am trying to manually copy some native code into our application to improve compatibility with Internet Explorer. From the Chrome console:
[].find.toString();
Outputs:
"function find() { [native code] }"
I want to put into my application:
Array.prototype.find = "native code here";
So we can use functions like these that aren't supported in Internet Explorer. Any ideas?