True when `entry` is a reference to a named group (`{Type:'group', Value}`).
(entry)
| 85 | |
| 86 | /** True when `entry` is a reference to a named group (`{Type:'group', Value}`). */ |
| 87 | function isGroupRef(entry) { |
| 88 | return entry && typeof entry === 'object' && entry.Type === 'group' && typeof entry.Value === 'string' |
| 89 | } |
| 90 | |
| 91 | /** True when `entry` is an inline anonymous group (`{Type:'group', Properties}`). */ |
| 92 | function isInlineGroup(entry) { |
no outgoing calls
no test coverage detected