Skip to main content
The Deno 2 Release Candidate is here
Learn more

Swagify

“I use it every day.” - Connor, 12, 420th prestige on BLOPS2

Author: GitHub Repo: GitHub

Usage

import { swagify } from "https://deno.land/x/swagify/mod.ts";

console.log(swagify("Username to swagify"));

Config (This is optional)

Props Type Default
upperCaseChance number 0.5
letterReplaceChance number 0.8
tripleChance number 0.1
maxTags number 3

Example

const name = swagify("Artemiy", {
  upperCaseChance: 0,
  letterReplaceChance: 1,
  tripleChance: 0,
  maxTags: 200,
});

console.log(name);

Node

npm i @artemis69/swagify
import { swagify } from "@artemis69/swagify";

console.log(swagify("Username to swagify"));