0.3.1 • Published 4 years ago

cmd-or-ctrl v0.3.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

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.

NPM Package | CNPM

How to use

# npm
npm i cmd-or-ctrl

# yarn
yarn add cmd-or-ctrl
var 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