All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
18 lines
246 B
JavaScript
18 lines
246 B
JavaScript
'use strict'
|
|
|
|
module.exports = spread
|
|
|
|
function spread(children) {
|
|
var index = -1
|
|
|
|
if (children.length > 1) {
|
|
while (++index < children.length) {
|
|
if (children[index].spread) {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|