confirm-simple

A simple command-line tool to confirm

MIT 4 个版本
安装
npm install confirm-simple
yarn add confirm-simple
pnpm add confirm-simple
bun add confirm-simple
README

confirm-simple

npm version npm download

NPM

A simple command-line tool to confirm

Install

$ npm install --save confirm-simple

Api

confirm(message, [chose,] callback)

Example

var confirm = require('confirm-simple')

confirm('how are you?', function(ok){
    if(ok){ // ok is boolean
        // I'm crazy
    }
})

var confirm = require('confirm-simple')

confirm('how are you?', ['ok', 'cancel'] ,function(ok){
    if(ok){ // ok is boolean
        // I'm crazy
    }
})

版本列表
1.0.3 2014-10-18
1.0.2 2014-10-17
1.0.1 2014-10-15
1.0.0 2014-10-15