OSDN Git Service

new repo
[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 } );