mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-02-17 11:26:42 +00:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
|
'use strict';
|
||
|
|
||
|
function isExpandedPool(semantic) {
|
||
|
return !!semantic.processRef;
|
||
|
}
|
||
|
|
||
|
function isExpanded(semantic, di) {
|
||
|
return di.isExpanded;
|
||
|
}
|
||
|
|
||
|
module.exports.isExpandedPool = isExpandedPool;
|
||
|
module.exports.isExpanded = isExpanded;
|