From 2c92a2dfbf596851fe55a22ffb08a0062cf55893 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Wed, 18 Dec 2024 03:25:21 +0000 Subject: [PATCH] Auto-generated commit --- .editorconfig | 2 +- CHANGELOG.md | 3 ++- none-in-by/README.md | 16 ++++++++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 60d743ff..0779e8ad 100644 --- a/.editorconfig +++ b/.editorconfig @@ -121,7 +121,7 @@ indent_style = tab [*.{md,md.txt}] indent_style = space indent_size = 4 -trim_trailing_whitespace = false +trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim. # Set properties for `usage.txt` files: [usage.txt] diff --git a/CHANGELOG.md b/CHANGELOG.md index d727bff5..7b9b07de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-12-17) +## Unreleased (2024-12-18)
@@ -111,6 +111,7 @@ A total of 2 people contributed to this release. Thank you to the following cont
+- [`a1b543a`](https://github.com/stdlib-js/stdlib/commit/a1b543a2a1bdf4d1fb9438bd4a13cb971af62063) - **docs:** update related packages sections [(#4009)](https://github.com/stdlib-js/stdlib/pull/4009) _(by stdlib-bot, Philipp Burckhardt)_ - [`32deb11`](https://github.com/stdlib-js/stdlib/commit/32deb11c6a2453748d8db9554b6bb3fdb73a077f) - **docs:** update related packages sections [(#3976)](https://github.com/stdlib-js/stdlib/pull/3976) _(by stdlib-bot)_ - [`b20a9e6`](https://github.com/stdlib-js/stdlib/commit/b20a9e616e5d04cfc3e5bc71bd557e15af738050) - **docs:** update related packages sections [(#3936)](https://github.com/stdlib-js/stdlib/pull/3936) _(by stdlib-bot)_ - [`1c56b73`](https://github.com/stdlib-js/stdlib/commit/1c56b737ec018cc818cebf19e5c7947fa684e126) - **docs:** update related packages sections [(#3380)](https://github.com/stdlib-js/stdlib/pull/3380) _(by stdlib-bot)_ diff --git a/none-in-by/README.md b/none-in-by/README.md index 4cfb9140..c3203779 100644 --- a/none-in-by/README.md +++ b/none-in-by/README.md @@ -211,6 +211,12 @@ var bool = noneInBy( obj, isUnderage ); ## See Also +- [`@stdlib/utils/any-in-by`][@stdlib/utils/any-in-by]: test whether at least one property in an object passes a test implemented by a predicate function. +- [`@stdlib/utils/every-in-by`][@stdlib/utils/every-in-by]: test whether all properties (own and inherited) of an object pass a test implemented by a predicate function. +- [`@stdlib/utils/for-in`][@stdlib/utils/for-in]: invoke a function for each own and inherited enumerable property of an object. +- [`@stdlib/utils/none-by`][@stdlib/utils/none-by]: test whether all elements in a collection fail a test implemented by a predicate function. +- [`@stdlib/utils/some-in-by`][@stdlib/utils/some-in-by]: test whether an object contains at least n properties (own and inherited) which pass a test implemented by a predicate function. +
@@ -221,6 +227,16 @@ var bool = noneInBy( obj, isUnderage ); +[@stdlib/utils/any-in-by]: https://github.com/stdlib-js/utils/tree/main/any-in-by + +[@stdlib/utils/every-in-by]: https://github.com/stdlib-js/utils/tree/main/every-in-by + +[@stdlib/utils/for-in]: https://github.com/stdlib-js/utils/tree/main/for-in + +[@stdlib/utils/none-by]: https://github.com/stdlib-js/utils/tree/main/none-by + +[@stdlib/utils/some-in-by]: https://github.com/stdlib-js/utils/tree/main/some-in-by +