Crates.io | data-utility-belt |
lib.rs | data-utility-belt |
version | 0.1.5 |
source | src |
created_at | 2020-04-06 13:38:05.879956 |
updated_at | 2020-07-25 18:01:14.753851 |
description | Utility to perform a series of basic operation on data. |
homepage | https://github.com/adalbertoteixeira/data-utility-belt |
repository | https://github.com/adalbertoteixeira/data-utility-belt |
max_upload_size | |
id | 226907 |
size | 26,043 |
CLI set of utilities to automate small common everyday tasks operated on strings, arrays and objects.
Orientated towards JavaScript and React development, and still on it's very early stages.
cargo install data-utility-belt
Nothing to see here yet.
Operations performed on arrays.
By default any array passed in will remove duplicate values.
$ data-utility-belt array "cli os os cli"
> cli, os
$ data-utility-belt array "
goal={goal} strategy={strategy} idealinfluencer={idealinfluencer}
" props_to_array
> goal, idealinfluencer, strategy
data-utility-belt array "
className,
entityType,
entityId,
childType,
childKey,
chatContext,
counts,
" array_to_props
> chatContext={chatContext}
childKey={childKey}
childType'={childType'}
counts={counts}
entityId={entityId}
entityType={entityType}
cargo run -- object --difference "$(cat examples/a.json )" "$(cat examples/b.json )"