Browse Source

Update README.md

Change output to return
content-update
Tlekbai Ali 4 years ago committed by GitHub
parent
commit
a158a1df34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      subjects/flagger/README.md

9
subjects/flagger/README.md

@ -2,14 +2,13 @@
### Instructions
Create a function called `flags` that receives an object and outputs
Create a function called `flags` that receives an object and returns
the specific aliases and descriptions from the properties of that object.
The `help` flag:
- Should be present in the output by default.
- When not present in the input, it should output the description of all flags.
But when present it can specify the flags that you want to see
the description of. (ex: `help: ['divide']`)
- When not present in the input, it should return the description of all flags.
But when present it specifies the descriptions of the flags that are passed to help. (ex: `help: ['divide']`)
#### Example:
@ -27,4 +26,4 @@ and outputs :
alias: { h: 'help', m: 'multiply', d: 'divide'}
description: '-d, --divide: divides the values',
}
```
```

Loading…
Cancel
Save