UNPKG

@sendgrid/helpers

Version:

Twilio SendGrid NodeJS internal helpers

9 lines (7 loc) 146 B
'use strict'; /** * Deep cloning helper for objects */ module.exports = function deepClone(obj) { return JSON.parse(JSON.stringify(obj)); };