Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
devtools
/
devtools-frontend
/
706ec965fb2b59e2aa5d97a77d35ac34aaab4120
/
.
/
node_modules
/
csso
/
lib
/
clean
/
utils.js
blob: 976fb0e5280cc54fa369730495380e607a3d42a7 [
file
] [
log
] [
blame
]
module
.
exports
=
{
hasNoChildren
:
function
(
node
)
{
return
!
node
||
!
node
.
children
||
node
.
children
.
isEmpty
();
},
isNodeChildrenList
:
function
(
node
,
list
)
{
return
node
!==
null
&&
node
.
children
===
list
;
}
};