Version 1
[yaffs-website] / node_modules / underscore.string / stripTags.js
diff --git a/node_modules/underscore.string/stripTags.js b/node_modules/underscore.string/stripTags.js
new file mode 100644 (file)
index 0000000..8948d36
--- /dev/null
@@ -0,0 +1,5 @@
+var makeString = require('./helper/makeString');
+
+module.exports = function stripTags(str) {
+  return makeString(str).replace(/<\/?[^>]+>/g, '');
+};