Skip to content

Commit

Permalink
fix(docs): stop advertising .argv property
Browse files Browse the repository at this point in the history
Refs #2035
  • Loading branch information
bcoe committed Sep 25, 2021
1 parent cfe1c6d commit e72ebbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -103,7 +103,7 @@ yargs(hideBin(process.argv))
type: 'boolean',
description: 'Run with verbose logging'
})
.argv
.parse()
```

Run the example above with `--help` to see the help for the application.
Expand Down Expand Up @@ -138,7 +138,7 @@ yargs(Deno.args)
})
.strictCommands()
.demandCommand(1)
.argv
.parse()
```

### ESM
Expand All @@ -154,7 +154,7 @@ yargs(hideBin(process.argv))
console.info(argv)
})
.demandCommand(1)
.argv
.parse()
```

### Usage in Browser
Expand Down

0 comments on commit e72ebbf

Please sign in to comment.