Skip to content

Commit

Permalink
name function, #384
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Nov 4, 2024
1 parent 73e9722 commit bed8a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/common/booleanPrompt.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const prompt = require( './prompt.js' );
* @param {boolean} noninteractive - If true, skips the prompt
* @returns {Promise.<boolean>}
*/
module.exports = async function( question, noninteractive ) {
module.exports = async function booleanPrompt( question, noninteractive ) {
if ( noninteractive ) {
return true;
}
Expand Down

0 comments on commit bed8a19

Please sign in to comment.