Sha256: 75c624f9b3ab775b1559cdda431683959e471f5c3d8fa1c81b263020d0e96c72
Contents?: true
Size: 320 Bytes
Versions: 62
Compression:
Stored size: 320 Bytes
Contents
/* 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); if(idx >= 0) { this[collection].splice(idx, 1); thing[action](this); return true; } return false; };
Version data entries
62 entries across 62 versions & 1 rubygems