Chatwoot/app/javascript/dashboard/helper/commons.js
2019-10-16 14:36:17 +05:30

11 lines
229 B
JavaScript

/* eslint no-console: 0 */
/* eslint no-param-reassign: 0 */
export default () => {
if (!Array.prototype.last) {
Object.assign(Array.prototype, {
last() {
return this[this.length - 1];
},
});
}
};