UNPKG

motion

Version:

motion - moving development forward

17 lines (15 loc) 329 B
/** * Escape special characters in the given string of html. * * @param {String} html * @return {String} * @api private */ module.exports = function(html) { return String(html) .replace(/&/g, '&amp;') .replace(/"/g, '&quot;') .replace(/'/g, '&#39;') .replace(/</g, '&lt;') .replace(/>/g, '&gt;'); }