You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
}
}
The text was updated successfully, but these errors were encountered:
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:The text was updated successfully, but these errors were encountered: