antonmedv / fx

Terminal JSON viewer & processor
https://fx.wtf
MIT License
19.08k stars 438 forks source link

Prevent "reduce" name collision #177

Closed yuryshulaev closed 2 years ago

yuryshulaev commented 2 years ago

.fxrc:

global._ = require('lodash/fp');
Object.assign(global, _);

Before:

$ echo '[2, 3, 4]' | fx 'reduce(multiply, 1)'
1 # Huh?

After:

$ echo '[2, 3, 4]' | fx 'reduce(multiply, 1)'
24