Security update to Drupal 8.4.6
[yaffs-website] / node_modules / underscore.string / stripTags.js
1 var makeString = require('./helper/makeString');
2
3 module.exports = function stripTags(str) {
4   return makeString(str).replace(/<\/?[^>]+>/g, '');
5 };