rush
rush copied to clipboard
[WIP] Succinct & readable processing language for the shell
``` 5 >> |x| x + 2 === 7 "-8" >> int & abs & |x| x / 2 >> sqrt === 2 ("-8" >> int & abs, 2) >>...
LoDash/Underscore is a widely used Javascript library with some helper functions. Many of them could be translated directly to rush. - [ ] `chunk` (for arrays and strings) - [x]...
The obvious ones: - [ ] `lower` - [ ] `upper` and also: - [ ] `camel` (camelCase) - [ ] `cap` (Capitalize) - [ ] `snake` (snake_case)
Most of the actually portable ones are already present in some form, but there a few remaining. Here's a list: - [ ] `range` - [ ] `zip` (producing array...