I found that if the pow is `-21`, the library returns 0. ```bash > BigNumber(10).pow( -20 ).toFixed() "0.00000000000000000001" > BigNumber(10).pow( -21 ).toFixed() "0" ```
I found that if the pow is
-21, the library returns 0.