This module provides simple value serialization.
serialization.serialize(value: any except functions[, pretty:boolean/number]): stringserialization.unserialize. The generated output is Lua code. Supports basic types (nil, boolean, number, string) and tables without cycles (will error out when cycles are detected, unless in pretty print mode). Properly handles NaN values and infinity.pretty mode can be used to generate output for display to the user, this output will in most circumstances not be readable with serialization.unserialize.
serialization.unserialize(value: string): anyserialization.serialize.