UNPKG

string-minify

Version:

Simple string (file-content) minifier. This helper removes all extra whitespaces, tabs, newlines and trims the string.

2 lines (1 loc) 63 B
module.exports = string => string.replace(/\s+/g, ' ').trim();