mirror of
https://github.com/vvsviridov/enm-cli.git
synced 2025-10-23 08:22:21 +00:00
11 lines
352 B
JavaScript
11 lines
352 B
JavaScript
function end() {
|
|
this.fdn = this.fdn.replace(/\((\w+)\)/g, '')
|
|
this.isConfig = false
|
|
this.attribute = null
|
|
// this.configSet.length = 0
|
|
this.configCommands = this.configCommands.filter(cmd => !['get', 'set', 'description'].includes(cmd) )
|
|
this.nextVariants = async (input) => await this.nextObjects(input)
|
|
}
|
|
|
|
|
|
module.exports = end |