mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-12-16 01:10:30 +02:00
15 lines
399 B
JavaScript
15 lines
399 B
JavaScript
|
module.exports = {
|
||
|
/**
|
||
|
* Converts a brand title into a filename (not a full path)
|
||
|
* @param {String} title The title to convert
|
||
|
*/
|
||
|
titleToFilename: title => (
|
||
|
title.toLowerCase()
|
||
|
.replace(/\+/g, "plus")
|
||
|
.replace(/^\./, "dot-")
|
||
|
.replace(/\.$/, "-dot")
|
||
|
.replace(/\./g, "-dot-")
|
||
|
.replace(/[ !’]/g, "")
|
||
|
)
|
||
|
}
|