Vedant Ravindra Dhoke

Results 7 issues of Vedant Ravindra Dhoke

This patch ensures that both mi_ctz_generic32 and mi_clz_generic32 perform safe indexing into the de Bruijn lookup tables by masking the computed index with `& 31`. On platforms where unsigned long...

This patch ensures that fs.cpSync and copyDir handle Buffer and URL types for the src and dest arguments by normalizing them to string paths using toString() and fileURLToPath() respectively. Previously,...

fs
needs-ci

- The logic for emitting the DEP0155 warning now checks that the export key is exactly `"./"` before displaying the warning. - Pattern mappings such as `"./*"` and valid subpath...

esm
needs-ci

This adds a new string utility that extends _.split to handle multiple word separators passed as an array. It properly splits strings at each separator and handles connecting characters between...

Adds a new uniqByExisting function that behaves like uniqBy but skips elements where the specified property path doesn't exist. This addresses issue #5951 and partially implements the feature request in...

Fixes https://github.com/lodash/lodash/issues/5940 This PR addresses the inconsistent terminology in the documentation: reject was described as "The opposite of _.filter" unescape was described as "The inverse of _.escape" I've standardized the...

This commit updates the `_ForUpdateOfArgument` type alias used in the `with_for_update(of=...)` method to explicitly allow `Type[DeclarativeBase]` subclasses. In SQLAlchemy 2.x, `DeclarativeBase` is the recommended way to define ORM models. While...