mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
11 lines
No EOL
182 B
JavaScript
11 lines
No EOL
182 B
JavaScript
'use strict';
|
|
|
|
module.exports = function forget(key) {
|
|
if (Array.isArray(this.items)) {
|
|
this.items.splice(key, 1);
|
|
} else {
|
|
delete this.items[key];
|
|
}
|
|
|
|
return this;
|
|
}; |