format.js 95 B

12345
  1. 'use strict';
  2. module.exports = function (string) {
  3. return string.replace(/\n\s*/gm, ' ');
  4. };