New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

lgbt

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lgbt

LGBTize anything

latest
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

LGBT

Old mudila

Bun utilities to LGBTize anything. Node.js is not supported. Deno is not supported.

Check out Telegram bot that paints pictures to LGBT flag.

lgbt(image: Uint8Array | ArrayBuffer | Blob): Promise<Uint8Array>

Uses ImageMagick's hue shifting under the hood. magick convert must be installed and available in PATH.

Example with local file:

import { lgbt } from "lgbt";

const heterostink = await Bun.file("normis.png").bytes();
const gayslay = await lgbt(heterostink);
await Bun.write("lgbtized.png", gayslay);

Example with remote file:

import { lgbt } from "lgbt";

const bun = await fetch("https://bun.sh/logo.svg").then((res) =>
	res.arrayBuffer(),
);
const epicbun = await lgbt(bun);
await Bun.write("epicbunlogo.png", epicbun);

lgbtPhrase(phrase: string): string

Insert rainbow flags AND other lgbt-ish things 💅🏼🏳️‍🌈

Example:

import { lgbtPhrase } from "lgbt";

const newPhrase = lgbtPhrase("I am 100% Straight and I am not gay.");
console.log(newPhrase); // I 🌈 am 🌈 100% 💅🏼 Straight 🏳️‍🌈 and 🏳️‍⚧️ I 🏳️‍⚧️ am 💅🏼 not 🌈 gay. 💅🏼

License

MIT

Donate

hloth.dev/donate

FAQs

Package last updated on 02 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts