normalizer = normalize.bind(null, config); // no more var that = this;
output = Object.keys(obj) // look! iterator functions on objects!
.map(function (key) {
return normalize(obj[key]).trim(); // it's about friggin time you got some trim, huh?
})
.filter(function (val) {
return Date.parse(val); // simplified ISO8601 support (whatevs, man. it werks)
});
curl(
// use `preloads` to make sure shims are executed before app modules
{ preloads: ['poly/array', 'poly/function', 'poly/xhr'] },
['app/main']
);
curl(
// I plan to write me some serious ES5 shiz!
{ preloads: ['poly/all'] },
['app/main']
);