vue-carousel-3d
Version:
Beautiful, flexible and touch supported 3D Carousel for Vue.js
22 lines (17 loc) • 399 B
JavaScript
;
var htmlEntityMap = {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
'\'': ''',
'/': '/'
};
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;