JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 30346
  • Score
    100M100P100Q144230F
  • License KINDLY

Turns an object into a bash command.

Package Exports

  • oargv

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (oargv) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

oargv

oargv Donate now

Turns an object into a bash command.

Installation

$ npm i oargv

Example

// Dependencies
var OArgv = require("oargv");

console.log(OArgv({
    r: true
  , _: ["target.zip", "somedir"]
}, "zip", true));
// => zip "-r" "target.zip" "somedir"

console.log(OArgv({
    d: "http://ionicabizau.net"
  , tt: true
  , size: "600x800"
}, "bat", true));
// => bat "-d" "http://ionicabizau.net" "--tt" "--size" "600x800"

console.log(OArgv({
    escaping: "She said: \"Hello World\"!"
}, "foo", true));
// => foo "--escaping" "She said: \"Hello World\"!"

console.log(OArgv({
    noCommand: "foo"
  , b: true
}));
// => [ '--noCommand', 'foo', '-b' ]

console.log(OArgv({
    __: "=",
    custom: "Separator"
}, "foo"));
// => [ '--custom="Separator"' ]

Documentation

OArgv(options, prgm, stringify)

Stringifies the options, building a command.

Params

  • Object options: The options that should be stringified. If it contains the _ field, then this should be an Array of strings, that representing values that will be added at the end of the command. The __ field is the separator (default: " ").
  • String prgm: The program that executes the command (default: "").
  • Boolean stringify: If true, the result array will be stringified (default: false).

Return

  • String|Array The stringified arguments (if stringify is true) or the array of arguments.

How to contribute

Have an idea? Found a bug? See how to contribute.

Who uses this

If you are using this library in one of your projects, add it in this list. ✨

License

KINDLY © Ionică Bizău–The LICENSE file contains a copy of the license.