UNPKG

@yandex/ui

Version:

Yandex UI components

7 lines (6 loc) 229 B
module.exports.isEmptyCompose = (node) => { const res = node.type === 'CallExpression' && (node.callee.name === 'composeU' || node.callee.name === 'compose') && node.arguments.length === 0; return res; };