export function assertStringify<T>(input: T): string;
export function createAssertStringify<T>(): (input: T) => string;
Two functions assertStringify()
and createAssertStringify()
have been newly added.
They're composite functions combined assertType()
and stringify()
, so that much safer and even than JSON.stringify()
.
I hope them to be killer functions of typescript-json
.
What's Changed
Full Changelog: v3.3.13...v3.3.14