aboutsummaryrefslogtreecommitdiff
path: root/node_modules/svgo/plugins/removeTitle.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/svgo/plugins/removeTitle.js')
-rw-r--r--node_modules/svgo/plugins/removeTitle.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/node_modules/svgo/plugins/removeTitle.js b/node_modules/svgo/plugins/removeTitle.js
new file mode 100644
index 00000000..3d077e45
--- /dev/null
+++ b/node_modules/svgo/plugins/removeTitle.js
@@ -0,0 +1,24 @@
+'use strict';
+
+exports.type = 'perItem';
+
+exports.active = false;
+
+exports.description = 'removes <title> (disabled by default)';
+
+/**
+ * Remove <title>.
+ * Disabled by default cause it may be used for accessibility.
+ *
+ * https://developer.mozilla.org/en-US/docs/Web/SVG/Element/title
+ *
+ * @param {Object} item current iteration item
+ * @return {Boolean} if false, item will be filtered out
+ *
+ * @author Igor Kalashnikov
+ */
+exports.fn = function(item) {
+
+ return !item.isElem('title');
+
+};