@microsoft.azure/autorest.testserver
Version:
Autorest test server.
12 lines • 392 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.cleanupBody = void 0;
/**
* Cleanup the raw content:
* - trim whitespaces
* - replace \r\n with \n
* @param rawContent: raw content to clean.
*/
const cleanupBody = (rawContent) => rawContent.trim().replace(/\r?\n|\r/g, "\n");
exports.cleanupBody = cleanupBody;
//# sourceMappingURL=body-utils.js.map