mirror of
https://github.com/vvsviridov/enm-cli.git
synced 2025-10-23 00:12:23 +00:00
14 lines
401 B
JavaScript
Executable File
14 lines
401 B
JavaScript
Executable File
|
|
|
|
async function nextAttributes(input) {
|
|
const filter = input ? input : ''
|
|
this.commands = this.configCommands
|
|
.filter(item => item.toLowerCase().includes(filter.toLowerCase()))
|
|
this.choices = this.attributes
|
|
.map(item => item.key)
|
|
.filter(item => item.toLowerCase().includes(filter.toLowerCase()))
|
|
.sort((a, b) => a > b ? 1 : -1)
|
|
}
|
|
|
|
|
|
module.exports = nextAttributes |