Etienne

Results 10 issues of Etienne

Here is a suggestion for _.invert ```` const a = { b:"C" , d: "E"}; const invertA = Object.entries(a).reduce((c,[k,v])=> { c[v]=k; return c; }, {}); // {C:"b", E:"d" } ````

Tips
PR welcome

**I'm submitting a ...** (check one with "x") - (x) bug report => search github for a similar issue or PR before submitting - ( ) feature request - (...

wontfix

Fixing a callbackify behavior that is different from the NodeJS implementation ( when NodeJS version >= 12.0) In node, the callbackified function has a length that is one more than...