bahnui/back/node_modules/@derhuerst/br2nl/index.js
2024-11-15 23:23:46 +01:00

8 lines
117 B
JavaScript

'use strict'
const regex = /<br\b[^>]*>/gi
const br2nl = html => html.replace(regex, '\n')
module.exports = br2nl