You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
457 B
20 lines
457 B
2 years ago
|
'use strict';
|
||
|
|
||
|
var value = require('es5-ext/object/valid-object')
|
||
|
|
||
|
, hasOwnProperty = Object.prototype.hasOwnProperty;
|
||
|
|
||
|
module.exports = function (emitter/*, type*/) {
|
||
|
var type = arguments[1], data;
|
||
|
|
||
|
value(emitter);
|
||
|
|
||
|
if (type !== undefined) {
|
||
|
data = hasOwnProperty.call(emitter, '__ee__') && emitter.__ee__;
|
||
|
if (!data) return;
|
||
|
if (data[type]) delete data[type];
|
||
|
return;
|
||
|
}
|
||
|
if (hasOwnProperty.call(emitter, '__ee__')) delete emitter.__ee__;
|
||
|
};
|