| DIR:/proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/collect.js/dist/methods/ |
| Current File : //proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/collect.js/dist/methods/pop.js |
'use strict';
module.exports = function pop() {
if (Array.isArray(this.items)) {
return this.items.pop();
}
var keys = Object.keys(this.items);
var key = keys[keys.length - 1];
var last = this.items[key];
delete this.items[key];
return last;
}; |