Socket
Book a DemoInstallSign in
Socket

hledger-flags

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hledger-flags

Parses hledger flags

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

hledger-flags

Parses hledger flags

> parse('-f ledger.journal bal -M')
{
  command: 'balance',
  file: 'ledger.journal',
  query: [],
  monthly: true
}

Parses flags for hledger. Knows most of hledger's flag aliases and other quirks.

Status

API

OPTIONS

Options for rminimist.

> OPTIONS.boolean
[ 'ignore-assertions', 'cleared', 'pending', ... ]

> OPTIONS.string
[ 'file', 'begin', 'end', ... ]

> OPTIONS.alias
{ f: 'file', b: 'begin', e: 'end', ... }

parse

parse(string)

Parses a string into a Ledger Flags object.

> parse('-f ledger.journal bal -M')
{
  command: 'balance',
  file: 'ledger.journal',
  query: [],
  monthly: true
}

The return value is an object that always has the following fields:

  • command (String) - the command to be executed
  • query (Array) - query to run

All other attributes are derived from the flags.

normalizeCommand

normalizeCommand(cmd)

Normalizes a command based on aliases.

> normalizeCommand('reg')
'register'

> normalizeCommand('bal')
'balance'

toString

toString(flags)

Converts Ledger Flags back into string.

> args = parse('bal -f ledger.journal -M');
> toString(args)
'balance --file ledger.journal --monthly'

parseMany

parseMany(strings...)

Parses many arguments.

> args = parseMany('-f ledger.journal', 'bal -M');
> toString(args)
'balance --file ledger.journal --monthly'

See also

Thanks

hledger-flags © 2016+, Rico Sta. Cruz. Released under the MIT License.
Authored and maintained by Rico Sta. Cruz with help from contributors (list).

ricostacruz.com  ·  GitHub @rstacruz  ·  Twitter @rstacruz

Keywords

hledger

FAQs

Package last updated on 11 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts