You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
davhojt 0218f8e8b3 docs(flagger): correct grammar 2 years ago
..
README.md docs(flagger): correct grammar 2 years ago

README.md

Flagger

Instructions

Create a function named flags that receives an object and returns the specific aliases and descriptions from the properties of that object.

The help flag:

  • Must be present in the output by default.
  • When not present in the input, it should return the description of all flags.
  • When present in the input, it specifies the descriptions of the flags that are passed to help. (ex: help: ['divide'])

Example:

{
  multiply: 'multiply the values',
  divide: 'divides the values',
  help: ['divide']
}

and outputs :

{
  alias: { h: 'help', m: 'multiply', d: 'divide'}
  description: '-d, --divide: divides the values',
}