SAP-BTP-Spielwiese/app1/node_modules/@sap/logging/lib/formats/common.js

12 lines
221 B
JavaScript
Raw Normal View History

'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);
}