spreadsheet
typeScript/javascript spreadsheet parser, with formulas.
git clone https://git.vogt.world/spreadsheet.git
Log | Files | README.md
← All files
name: src/Utilities/Serializer.ts
-rw-r--r--
205
 1/**
 2 * Class to hold static methods for serialization.
 3 */
 4class Serializer {
 5  static serialize(value: any) : string {
 6    return "<" +  (typeof value) + ": " + value + ">";
 7  }
 8}
 9
10export {
11  Serializer
12}