UNPKG
rizer
Version:
latest (1.1.0-alpha.0)
1.1.0-alpha.0
1.0.3
1.0.2
1.0.1
1.0.0
A CLI tool to resize images by width, height, or ratio
boystro/rizer
rizer
/
src
/
utility
/
promptProceed.js
14 lines
(12 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
inquirer
from
"inquirer"
;
export
default
async
function
(
msg
) {
const
{ proceed } =
await
inquirer.
prompt
([ {
type
:
"confirm"
,
name
:
"proceed"
, message,
default
:
false
, }, ]);
return
proceed; }