SAP-BTP-Spielwiese/app1/node_modules/@sap/logging/lib/formats/common.js
Markus Rettig 775ac7b58c completed step 3 from the tutorial
you must login with an BTP account in order to see the app
2024-02-08 16:13:36 +01:00

11 lines
221 B
JavaScript

'use strict';
const NEW_LINE_SEPARATOR = require('../constants').NEW_LINE_SEPARATOR;
module.exports = {
replaceNewLines
};
function replaceNewLines(str) {
return str.replace(/(\r\n|\n|\r)/g, NEW_LINE_SEPARATOR);
}