Skip to main content
Home

A proper description

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
94%
Published
a year ago (1.0.0)
/** * Yassify a string of text by appending emoji * * @param str The string of text to yassify. * @returns a string of text with emoji appended */ export function yassify(str: string): string { return `${str} 💅✨👑`; }