Skip to content

Instantly share code, notes, and snippets.

@Adam-Mould
Last active January 17, 2018 09:17
Show Gist options
  • Save Adam-Mould/16fc7f8b737cce2432d18c0818625d69 to your computer and use it in GitHub Desktop.
Save Adam-Mould/16fc7f8b737cce2432d18c0818625d69 to your computer and use it in GitHub Desktop.
const Analytics = {};
// Pass n arguments using rest parameter
Analytics.trigger = (...params) => {
// console.log(typeof params); // object (Array)
// Spread parameter into CoreMetrics tag
cmCreateElementTag(...params);
};
export default Analytics;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment