mirror of
https://github.com/vvsviridov/enm-cli.git
synced 2025-10-23 08:22:21 +00:00
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
function setIdByCommand(command) {
|
|
const nextChild = this.childrens.filter(child => `${child.moType}=${child.moName}` === command)[0]
|
|
if (nextChild) {
|
|
this.nextPoId = nextChild.poId
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
|
|
module.exports = setIdByCommand |