README
dotup-ts-json-serializer
USAGE
Typescript:
const jm = new JsonManager();
const p1 = new Player('Player 1');
const p2 = new Player('Player 2');
const playerList = [p1, p2];
const toJson = jm.SerializeReplaced(playerList);
const playerListFromJson = jm.Parse(toJson);
Docs:
https://dotupnet.github.io/dotup-ts-json-serializer/index.html