mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-26 06:59:52 +03:00

BREAKING CHANGE: Now only one tag will be published: `latest`. This tag will include both the standard and latest version
6 lines
189 B
JavaScript
6 lines
189 B
JavaScript
export default function (contents, name) {
|
|
if (name.endsWith('.svg')) {
|
|
return contents.toString('utf8').split(/\n */).join(' ').replace(/\s+/g, ' ').trim();
|
|
}
|
|
return contents;
|
|
}
|