Skip to content

v3.3.15

Compare
Choose a tag to compare
@samchon samchon released this 25 Oct 11:01
· 1874 commits to master since this release
a97181c
export function stringify<T>(input: T): string; // unsafe but fatest
export function assertStringify<T>(input: T): string; // throws TypeGuardError
export function isStringify<T>(input: T): string | null; // wrong type be null

export function createStringify<T>(): (input: T) => string;
export function createAssertStringify<T>(): (input: T) => string;
export function createIsStringify<T>(): (input: T) => string | null;

JSON string converters are enhanced.

What's Changed

Full Changelog: v3.3.14...v3.3.15