Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jul 21, 2024
1 parent 2be5ce5 commit 6cbaa5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/use-case/nodecli/argument-parse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ console.log(positionals); // フラグ以外の引数の配列
`parseArgs`関数は、コマンドライン引数をパースした結果として`values``positionals`の2つのプロパティを持つオブジェクトを返します。
`values`オブジェクトには、`--key=value`のようなオプションや`--flag`のようなフラグをパースした結果が保存されています。
`positionals`配列には、オプションやフラグ以外の引数が配列として順番に格納されています。
デフォルトでは、`positionals`配列はパース結果には含まれないため、`allowPositionals`オプションを`true`に設定しています
デフォルトでは、`positionals`配列はパース結果には含まれないため、`allowPositionals`オプションを`true`にすることで含まれるようになります

今回の`main.js`に渡す`./sample.md`引数はオプションやフラグではないので、`positionals`配列に格納されます。
それでは`main.js`を次のように変更し、コマンドライン引数で渡されたファイルパスを取得しましょう。
Expand Down

0 comments on commit 6cbaa5a

Please sign in to comment.