mirror of
https://github.com/vvsviridov/enm-cli.git
synced 2025-10-23 00:12:23 +00:00
11 lines
265 B
JavaScript
Executable File
11 lines
265 B
JavaScript
Executable File
function setIdByCommand(command) {
|
|
const nextChild = this.childrens.find(child => `${child.moType}=${child.moName}` === command)
|
|
if (nextChild) {
|
|
this.nextPoId = nextChild.poId
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
|
|
module.exports = setIdByCommand |