0.3.1 • Published 6 years ago
cmd-or-ctrl v0.3.1
cmd-or-ctrl
The main thing this package does is simply returning command or control based on the OS the user is using, and the another thing is to return the common names of OSs.
How to use
# npm
npm i cmd-or-ctrl
# yarn
yarn add cmd-or-ctrlvar cmdOrCtrl = require('cmd-or-ctrl');
console.log(cmdOrCtrl.cmdOrCtrl())// ctrl / cmd
console.log(cmdOrCtrl.cmdOrCtrl("short"))// ctrl / cmd
console.log(cmdOrCtrl.cmdOrCtrl("long"))// control / command
console.log(cmdOrCtrl.cmdOrCtrl("short", "pascal"))// Ctrl / Cmd
console.log(cmdOrCtrl.cmdOrCtrl("long", "pascal"))// Control / Command
console.log(cmdOrCtrl._())// alternative of `cmdOrCtrl`, returns `ctrl`
console.log(cmdOrCtrl.os());// returns 'win32' or other os name
console.log(cmdOrCtrl.os("name"));// returns 'macOS' / 'Linux' / 'Windows' or other os name