2014-06-25 00:53:32 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
|
|
|
module.exports = function removeAndDo(collection, thing, action) {
|
|
|
|
var idx = this[collection].indexOf(thing);
|
2015-07-16 06:19:23 +08:00
|
|
|
if(idx >= 0) {
|
2014-06-25 00:53:32 +08:00
|
|
|
this[collection].splice(idx, 1);
|
|
|
|
thing[action](this);
|
2014-07-19 20:32:48 +08:00
|
|
|
return true;
|
2014-06-25 00:53:32 +08:00
|
|
|
}
|
2014-07-19 20:32:48 +08:00
|
|
|
return false;
|
2015-07-08 20:39:02 +08:00
|
|
|
};
|