UNPKG

@microsoft.azure/autorest.testserver

Version:
12 lines 392 B
"use strict"; 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