function makeMap (
  str,
  expectsLowerCase
) {
  var map = Object.create(null);
  var list = str.split(',');
  ; i < list.length; i++) {
    map[list[i]] = true;
  }
  return expectsLowerCase
    ? function (val) { return map[val.toLowerCase()]; }
    : function (val) { return map[val]; }
}

/**
 * Check if a tag is a built-in tag.
 */
var isBuiltInTag = makeMap('slot,component', true);

最新文章

  1. spring.net 如何让xml智能提示
  2. 在Android Studio中使用xUtils2.6.14,import org.apache.http不可用
  3. DES加密解密
  4. IMX6输出可控PWM
  5. cdoj 1136 邱老师玩游戏 树形背包
  6. WCF简介
  7. 20160322 javaweb 学习笔记--response 重定向
  8. hadoop namenode多次格式化后,导致datanode启动不了
  9. 通过mybatis读取数据库数据并提供rest接口访问
  10. android HttpGet 另开线程获取网络数据问题
  11. Junit4学习(六)Junit4参数化设置
  12. MongoDB一:入门(安装与配置)
  13. [Err] 1093 - You can't specify target table 's' for update in FROM clause
  14. QQ小橙团队排表机器人使用方法
  15. PTA_输入符号及符号个数打印沙漏(C++)
  16. html2canvas文字重叠(手机端)
  17. Linux----centos安装mysql
  18. 蓝图Tips
  19. Python内置类型(5)--迭代器类型
  20. 华为5G在印度被禁

热门文章

  1. windows上通过vnc连接虚拟机中linux系统
  2. MySQL超级简明基本操作攻略,给自己看(一)
  3. Testbench代码设计技巧
  4. 仿写从iOS8开始支持的UIAlertController:BGAAlertController-Android
  5. hdoj--1010--Tempter of the Bone(搜索+奇偶剪枝)
  6. 页面的URL分析----window.location.href
  7. spring boot integrated mybatis three ways!--转
  8. SPSS学习小记
  9. SQL Server: Windows Firewall with Advanced Security
  10. Kafka Consumer1