2021-02-08 19:14:31 +03:00
|
|
|
|
/**
|
|
|
|
|
* @fileoverview
|
|
|
|
|
* Some common utilities for scripts.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-08-27 00:23:57 +03:00
|
|
|
|
module.exports = {
|
2021-02-08 19:14:31 +03:00
|
|
|
|
/**
|
|
|
|
|
* Converts a brand title into a slug/filename.
|
|
|
|
|
* @param {String} title The title to convert
|
|
|
|
|
*/
|
|
|
|
|
titleToSlug: title => (
|
|
|
|
|
title.toLowerCase()
|
|
|
|
|
.replace(/\+/g, "plus")
|
|
|
|
|
.replace(/^\./, "dot-")
|
|
|
|
|
.replace(/\.$/, "-dot")
|
|
|
|
|
.replace(/\./g, "-dot-")
|
|
|
|
|
.replace(/^&/, "and-")
|
|
|
|
|
.replace(/&$/, "-and")
|
|
|
|
|
.replace(/&/g, "-and-")
|
|
|
|
|
.replace(/đ/g, "d")
|
|
|
|
|
.replace(/ħ/g, "h")
|
|
|
|
|
.replace(/ı/g, "i")
|
|
|
|
|
.replace(/ĸ/g, "k")
|
|
|
|
|
.replace(/ŀ/g, "l")
|
|
|
|
|
.replace(/ł/g, "l")
|
|
|
|
|
.replace(/ß/g, "ss")
|
|
|
|
|
.replace(/ŧ/g, "t")
|
|
|
|
|
.normalize("NFD")
|
|
|
|
|
.replace(/[\u0300-\u036f]/g, "")
|
2021-02-19 19:16:19 +03:00
|
|
|
|
.replace(/[^a-z0-9\-]/g, "")
|
2021-02-08 19:14:31 +03:00
|
|
|
|
),
|
2019-07-04 00:33:03 +03:00
|
|
|
|
|
2021-02-08 19:14:31 +03:00
|
|
|
|
/**
|
|
|
|
|
* Converts a brand title in HTML/SVG friendly format into a brand title (as
|
|
|
|
|
* it is seen in simple-icons.json)
|
|
|
|
|
* @param {String} htmlFriendlyTitle The title to convert
|
|
|
|
|
*/
|
|
|
|
|
htmlFriendlyToTitle: htmlFriendlyTitle => (
|
|
|
|
|
htmlFriendlyTitle
|
|
|
|
|
.replace(/'/g, "’")
|
|
|
|
|
.replace(/&/g, "&")
|
|
|
|
|
),
|
2019-04-17 12:59:44 +03:00
|
|
|
|
}
|