Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/enquirer/lib/prompts/list.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
36 lines (29 sloc)
811 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const StringPrompt = require('../types/string'); | |
class ListPrompt extends StringPrompt { | |
constructor(options = {}) { | |
super(options); | |
this.sep = this.options.separator || /, */; | |
this.initial = options.initial || ''; | |
} | |
split(input = this.value) { | |
return input ? String(input).split(this.sep) : []; | |
} | |
format() { | |
let style = this.state.submitted ? this.styles.primary : val => val; | |
return this.list.map(style).join(', '); | |
} | |
async submit(value) { | |
let result = this.state.error || await this.validate(this.list, this.state); | |
if (result !== true) { | |
this.state.error = result; | |
return super.submit(); | |
} | |
this.value = this.list; | |
return super.submit(); | |
} | |
get list() { | |
return this.split(); | |
} | |
} | |
module.exports = ListPrompt; |