mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-02-20 04:38:07 +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; |