|
/** |
|
* This is the basis of the ES5 function needed to support the transform done |
|
* by the es5-to-es3.spatch file. |
|
* |
|
* As you can see, the implementation is incomplete as the individual polyfills |
|
* are not present. |
|
* |
|
* Using implementations from eg https://github.com/kriskowal/es5-shim/ and |
|
* https://github.com/bestiejs/json3, this is how you would include them: |
|
* |
|
* var ES5ArrayPrototype = { |
|
* forEach: function(fn, scope) { |
|
* for(var i = 0, len = this.length; i < len; ++i) { |
|
* fn.call(scope, this[i], i, this); |
|
* } |
|
* }, |
|
* map: function (fn, scope) { |
|
* if (typeof fn != 'function') { |
|
* throw new TypeError(); |
|
* } |
|
* |
|
* var i, len = this.length, r = new Array(len); |
|
* for (i = 0; i < len; ++i) { |
|
* if (i in this) { |
|
* r[i] = fn.call(scope, this[i], i, this); |
|
* } |
|
* } |
|
* |
|
* return r; |
|
* } |
|
* }; |
|
*/ |
|
|
|
var ES5 = (function() { |
|
var toString = Object.prototype.toString; |
|
|
|
/* Add, or pull in your polyfills here */ |
|
|
|
var methodCache = { |
|
// Always use the polyfill for JSON to work around Prototype 1.6.x issues. |
|
// JSON3 will use the native versions if possible. |
|
'JSON.stringify': JSON3.stringify, |
|
'JSON.parse': JSON3.parse |
|
}; |
|
|
|
var polyfills = { |
|
'array' : ES5ArrayPrototype, |
|
'function': ES5FunctionPrototype, |
|
'string' : ES5StringPrototype, |
|
'Object' : ES5Object, |
|
'Array' : ES5Array, |
|
'Date' : ES5Date |
|
}; |
|
|
|
// Iterate over the polyfills, and add either a valid native implementation or |
|
// a polyfill to the methodCache |
|
for (var pName in polyfills) { |
|
if (!polyfills.hasOwnProperty(pName)) { continue; } |
|
var polyfillObject = polyfills[pName]; |
|
|
|
// Resolve which native object holds the function we are looking for |
|
var nativeObject = pName === pName.toLowerCase() |
|
? window[pName.replace(/^\w/, function(m) { return m.toUpperCase(); })] |
|
.prototype |
|
: window[pName]; |
|
|
|
// Iterate over the shimmed methods, testing the native implementation |
|
for (var fName in polyfillObject) { |
|
if (!polyfillObject.hasOwnProperty(fName)) { continue; } |
|
|
|
var nativeFunction = nativeObject[fName]; |
|
// If the native function exist, and tests as a native function, then |
|
// we save it for later |
|
methodCache[pName + '.' + fName] = |
|
nativeFunction && /\{\s+\[native code\]\s\}/.test(nativeFunction) |
|
? nativeFunction |
|
: polyfillObject[fName]; |
|
} |
|
} |
|
|
|
return function(lhs, rhs, proto/*, args*/) { |
|
// Normalize the type information |
|
var type = proto |
|
? toString.call(lhs).slice(8, -1).toLowerCase() |
|
: lhs; |
|
|
|
// Locate the method to use |
|
var method = methodCache[type + '.' + rhs] || lhs[rhs]; |
|
|
|
return method.apply(lhs, slice.call(arguments, 3)); |
|
}; |
|
|
|
})(); |