项目原始demo,不改动
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 

24 行
392 B

  1. 'use strict';
  2. exports.type = 'perItem';
  3. exports.active = true;
  4. exports.description = 'removes <metadata>';
  5. /**
  6. * Remove <metadata>.
  7. *
  8. * http://www.w3.org/TR/SVG/metadata.html
  9. *
  10. * @param {Object} item current iteration item
  11. * @return {Boolean} if false, item will be filtered out
  12. *
  13. * @author Kir Belevich
  14. */
  15. exports.fn = function(item) {
  16. return !item.isElem('metadata');
  17. };