UNPKG

bower

Version:

The browser package manager

19 lines (14 loc) 410 B
var toString = require('../lang/toString'); /** * Escapes a string for insertion into HTML. */ function escapeHtml(str){ str = toString(str) .replace(/&/g, '&amp;') .replace(/</g, '&lt;') .replace(/>/g, '&gt;') .replace(/'/g, '&#39;') .replace(/"/g, '&quot;'); return str; } module.exports = escapeHtml;