summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/condense-whitespace/index.js
blob: 634c0e3372648c8d13f2535c970898d43f872e7c (plain)
1
2
3
4
5
6
7
8
9
'use strict';

module.exports = string => {
	if (typeof string !== 'string') {
		throw new TypeError('Expected a string');
	}

	return string.trim().replace(/\s{2,}/g, ' ');
};