runtimeZero
runtimeZero

Reputation: 28046

ES5-Shim usage and requirement

The official explanation for this terms is

es5-shim.js and es5-shim.min.js monkey-patch a JavaScript context to contain all EcmaScript 5 methods that can be faithfully emulated with a legacy JavaScript engine.

However that just does not help me understand what it is and when should it be used ?

Any clues ?

Upvotes: 0

Views: 257

Answers (1)

Leo
Leo

Reputation: 13828

In short, currently you only need to use it if you still have to support IE8-. IE9+ and other browsers are ES5-ready.

Upvotes: 1

Related Questions