-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: #190 存在しないキーを pick すると undefined を値とするキーが結果に含まれるのをやめる #189
Conversation
🦋 Changeset detectedLatest commit: 3a9c9c8 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Walkthroughプロジェクト全体の変更は、新しい Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
yarn.lock
is excluded by!**/*.lock
,!**/*.lock
Files selected for processing (12)
- .vscode/project.code-workspace (1 hunks)
- docs/src/content/docs/api/has.md (1 hunks)
- src/has.ts (1 hunks)
- src/index.ts (1 hunks)
- src/lib/modifier.ts (3 hunks)
- src/pick.ts (2 hunks)
- src/type.ts (1 hunks)
- test/has.bench.ts (1 hunks)
- test/has.spec.ts (1 hunks)
- test/lib/modifier/has.spec.ts (1 hunks)
- test/omit.spec.ts (7 hunks)
- test/pick.spec.ts (8 hunks)
Files skipped from review due to trivial changes (4)
- .vscode/project.code-workspace
- src/index.ts
- test/has.spec.ts
- test/omit.spec.ts
Additional comments not posted (7)
src/has.ts (1)
26-37
: 関数has
の実装とドキュメントは問題なく、適切に機能しているようです。オプションのマージとキーの存在チェックのロジックがクリアに記述されています。src/pick.ts (1)
Line range hint
47-75
:pick
関数の変更点を確認しました。正規表現を使用してキーをフィルタリングし、キーがソースオブジェクトに存在するかどうかを確認してから、それを目的のオブジェクトに設定するロジックが正しく実装されています。test/has.bench.ts (1)
1-66
: ベンチマークテストの実装を確認しました。異なるオブジェクトサイズとキーチェックの割合でhas
関数をテストする設定が適切です。test/pick.spec.ts (1)
Line range hint
1-211
:pick
関数のユニットテストを確認しました。配列の扱いや、他のキーの接頭辞または接尾辞であるキーを含むさまざまなシナリオをテストしています。深い等価性チェックのためにtoStrictEqual
を使用することは適切です。src/type.ts (1)
Line range hint
1-159
: 型定義とインターフェースを確認しました。Dictionary
、HasOption
などの定義が含まれており、ライブラリの機能に対する明確なインターフェースを提供しています。HasOption
の追加とそのデフォルト設定が正しく実装されています。test/lib/modifier/has.spec.ts (1)
1-255
:ObjectModifier
インターフェースのhas
メソッドのユニットテストを確認しました。ドット表記やブラケット表記のキーを含むさまざまなシナリオでメソッドをテストしています。これらのテストにtoBeTruthy
とtoBeFalsy
を使用することは適切です。src/lib/modifier.ts (1)
Line range hint
1-256
:ObjectModifier
インターフェースとその実装を確認しました。ネストされたオブジェクト構造のキーを取得、設定、チェックするメソッドが含まれています。オプションの処理とキャッシュメカニズムが適切に実装されています。
|
||
type: `object` | ||
|
||
- #### `arrayIndex` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
見出しのフォーマットに誤りがあります。Markdownの見出しは行の始まりから記述する必要があります。
- - #### `arrayIndex`
+ #### `arrayIndex`
- - #### `treatUndefinedAsNonexistent`
+ #### `treatUndefinedAsNonexistent`
Also applies to: 45-45
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
- #### `arrayIndex` | |
#### `arrayIndex` | |
#### `treatUndefinedAsNonexistent` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
biome.json
is excluded by!**/*.json
Files selected for processing (1)
- src/index.ts (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- src/index.ts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (2)
biome.json
is excluded by!**/*.json
package.json
is excluded by!**/*.json
Files selected for processing (4)
- .changeset/rich-rice-crash.md (1 hunks)
- .vscode/project.code-workspace (1 hunks)
- docs/src/content/config.ts (1 hunks)
- test/has.bench.ts (1 hunks)
Files skipped from review due to trivial changes (1)
- .changeset/rich-rice-crash.md
Files skipped from review as they are similar to previous changes (2)
- .vscode/project.code-workspace
- test/has.bench.ts
Additional comments not posted (2)
docs/src/content/config.ts (2)
1-2
: インポート文に問題はありません。適切にモジュールがインポートされています。
4-5
:collections
定数の設定に問題はありません。docs
とi18n
の両方のコレクションが適切に定義されています。
CodSpeed Performance ReportMerging #189 will degrade performances by 32.14%Comparing Summary
Benchmarks breakdown
|
No description provided.