1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-20 07:54:17 +00:00
2024-03-11 20:28:19 +00:00

6 lines
140 B
JavaScript

export default (str) => {
const [name, domain] = str.split("@")
return `${name[0]}${new Array(name.length).join("*")}@${domain}`
}