Skip to content

Instantly share code, notes, and snippets.

View waycroft's full-sized avatar

Tyler Termini waycroft

View GitHub Profile
@waycroft
waycroft / mixpanel_merge_utility.ts
Last active October 17, 2021 03:10
Utility script for creating a Mixpanel $merge event to merge user profiles that share the same email.
// please reference https://developer.mixpanel.com/reference/identities#identity-merge first, as this is an irreversible operation!!!
// also address the TODOs found before running
import fetch from 'node-fetch';
var csv = require('node-csv').createParser();
interface DuplicatePairDict {
[email: string]: [string, string]
}
function returnDuplicates(data: string[][]): DuplicatePairDict {