cmd-or-ctrl
v0.3.1
Published
The main thing: returning 'command' or 'control' based on the OS the user is using; another thing: returning the common names of OSs.
Downloads
12
Maintainers
Readme
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-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