flowstdlib 0.142.0

The standard library of functions and flows for 'flow' programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## ToString (//flowstdlib/fmt/to_string)
Convert an input type to a String

Current types supported are:
 * null - A null will be printed as "null"
 * boolean - boolean JSON value
 * number - A JSON Number
 * string - a bit redundant, but it works
 * array - An JSON array of values that can be converted, they are converted one by one
 * object - a Map of names/objects that will also be printed out
 
### Include using
```toml
[[process]]
source = "lib://flowstdlib/fmt/to_string"
```