Is there a public method for removing experiments? Digging into the emitter source, I saw that there was rewind, which removes all experiments. But I was wondering if there is a method was defined to remove specific experiments? Something like:
PushtellEventEmitter.prototype.remove = function(experimentName) {
if (experiments[experimentName]) {
delete experiments[experimentName]
}
if (playedExperiments[experimentName]) {
delete playedExperiments[experimentName]
}
}
Is there a public method for removing experiments? Digging into the emitter source, I saw that there was
rewind, which removes all experiments. But I was wondering if there is a method was defined to remove specific experiments? Something like: