mirror of
https://github.com/outbackdingo/docker-registry-ui.git
synced 2026-04-07 15:06:55 +00:00
BREAKING CHANGE: Now only one tag will be published: `latest`. This tag will include both the standard and latest version
7 lines
189 B
JavaScript
7 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;
|
|
}
|