UNPKG

@sendgrid/helpers

Version:

Twilio SendGrid NodeJS internal helpers

11 lines (9 loc) 241 B
'use strict'; /** * Helper to convert an HTML string to a plain text string */ module.exports = function convertHTML2PlainString(html) { let text = html.replace(/(<([^>]+)>)/g, ''); text = text.replace(/\s+/g, ' '); return text; };