mediawiki-extensions-Visual.../modules/parser/core-upgrade.js

9 lines
250 B
JavaScript
Raw Normal View History

/**
* Progressive enhancement for JS core- define things that are scheduled to
* appear in the standard anyway.
*/
if(!Array.prototype.last) Object.defineProperty(Array.prototype, 'last', {
value: function() { return this[this.length - 1] }
});