utils.js 181 B

12345
  1. module.exports = {
  2. htmlEntities: function(str) {
  3. return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
  4. }
  5. };