dgilland / pydash

The kitchen sink of Python utility libraries for doing "stuff" in a functional way. Based on the Lo-Dash Javascript library.
http://pydash.readthedocs.io
MIT License
1.32k stars 93 forks source link

multiply does not math #217

Closed benconnito closed 7 months ago

benconnito commented 8 months ago
from pydash import py_

print(py_.multiply(0, 1) == 0)

returns false instead of true (because its returning 1 instead of 0)