All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
17 lines
304 B
JavaScript
17 lines
304 B
JavaScript
'use strict'
|
|
|
|
module.exports = generated
|
|
|
|
function generated(node) {
|
|
return (
|
|
!node ||
|
|
!node.position ||
|
|
!node.position.start ||
|
|
!node.position.start.line ||
|
|
!node.position.start.column ||
|
|
!node.position.end ||
|
|
!node.position.end.line ||
|
|
!node.position.end.column
|
|
)
|
|
}
|