UNPKG

tfk-saksbehandling-elev-varsel

Version:
14 lines (10 loc) 280 B
'use strict' function fixPeriod (period) { if (!period) { throw new Error('Missing required input: period') } var matched = period.match(/\.\s\w/g) || [''] var fixed = matched[0].replace(' ', '') return period.replace(matched, fixed) } module.exports = fixPeriod