UNPKG

ketting

Version:

Opiniated HATEAOS / Rest client.

14 lines (9 loc) 188 B
export function needsJsonStringify(input: any): boolean { if (typeof input ==='string') { return false; } if (input instanceof Blob) { return false; } return true; }