confirm-simple

1.0.3 • Public • Published

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
    }
})
 

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.3
    347
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.3
    347
  • 1.0.2
    0
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i confirm-simple

Weekly Downloads

297

Version

1.0.3

License

MIT

Last publish

Collaborators

  • noyobo