UNPKG

vue-carousel-3d

Version:

Beautiful, flexible and touch supported 3D Carousel for Vue.js

22 lines (17 loc) 399 B
'use strict'; var htmlEntityMap = { '&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', '\'': '&#39;', '/': '&#x2F;' }; function escapeHTML(str) { if (typeof str !== 'string') throw new TypeError('str must be a string!'); // http://stackoverflow.com/a/12034334 return str.replace(/[&<>"'\/]/g, function(a) { return htmlEntityMap[a]; }); } module.exports = escapeHTML;