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