Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
csso
/
lib
/
clean
/
utils.js
blob: ca1d57c84273f7bb476d1e39b230887509a87258 [
file
] [
log
] [
blame
]
export
function
hasNoChildren
(
node
)
{
return
!
node
||
!
node
.
children
||
node
.
children
.
isEmpty
;
}
export
function
isNodeChildrenList
(
node
,
list
)
{
return
node
!==
null
&&
node
.
children
===
list
;
}