OSDN Git Service

8a5f5f036473cbe1b5e6aff48b1deb312be186f8
[bytom/vapor.git] / tools / side_chain_tool / web / node_modules / jquery / src / core / nodeName.js
1 define( function() {
2
3 "use strict";
4
5 function nodeName( elem, name ) {
6
7   return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
8
9 };
10
11 return nodeName;
12
13 } );