This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
zhangqi
/
swOperation
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ブランチ:
defaultDevelop
ブランチ
タグ
defaultDevelop
master
swOperation
/
node_modules
/
ant-design-vue
/
es
/
vc-util
/
Dom
/
contains.js
contains.js
109 B
パーマリンク
履歴
Raw
1
2
3
4
5
6
export default function contains(root, n) {
if (!root) {
return false;
}
return root.contains(n);
}