mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 19:04:13 +03: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, "")
|
|||
|
)
|
|||
|
}
|