1.0.0 • Published 8 years ago

toggle-screencapture-shadow v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

toggle-screencapture-shadow

Install

$ npm install --save toggle-screencapture-shadow

Usage

const toggle = require('toggle-screencapture-shadow')

toggle((err, disabled) => {
  if (err) {
    console.log(err)
    return
  }
  console.log(`shadow is now ${disabled ? 'disabled' : 'enabled'}`)
})

// you can also set the new status directly
toggle.set(true | false, cb)

License

MIT © EGOIST