mixpanel-node
mixpanel-node copied to clipboard
created $ignore_time options for track_charge() and unset() methods
example using unset()
Mixpanel.people.unset(mixPanelID, {
properties : ['Downgraded', 'Unsuccessful charges'],
settings : {'$ignore_time' : true}
}, cb);
example using track_charge()
Mixpanel.people.track_charge(mixPanelID, 18, {'$ignore_time' : true}, cb);
+1