UNPKG

form-builder

Version:

A node js library for building forms and form elements

15 lines (12 loc) 291 B
// thanks to http://stackoverflow.com/a/4835406/786418 function escapeHtml(text) { var map = { '&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', "'": '&#039;' }; return text.replace(/[&<>"']/g, function(m) { return map[m]; }); } module.exports = escapeHtml;