ketting
Version:
Opiniated HATEAOS / Rest client.
14 lines • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.needsJsonStringify = void 0;
function needsJsonStringify(input) {
if (typeof input === 'string') {
return false;
}
if (input instanceof Blob) {
return false;
}
return true;
}
exports.needsJsonStringify = needsJsonStringify;
//# sourceMappingURL=fetch-body-helper.web.js.map