|
'use strict';
|
|
|
|
function getRecursiveParameters(entity, parameters) {
|
|
if (entity.parent) {
|
|
return getRecursiveParameters(entity.parent, { ...parameters, ...entity.parameters });
|
|
}
|
|
|
|
return { ...parameters, ...entity.parameters };
|
|
}
|
|
|
|
module.exports = getRecursiveParameters;
|