Serializable Values
A value is serializable if it can be converted into a text-based data format and then rebuilt later without losing information.
Inkweaver uses the JSON data format for this, which means the data must consist only of basic types:
- numbers
- strings
- booleans
- arrays
- plain objects
- other serializable values nested inside these
important
Values like functions or class instances cannot be serialized!