grays
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

grays

Turn your site gray and automatically cancel it at a certain time

Instal

pnpm i grays

#or

npm i grays

#or

yarn add grays

Basic Used

import { grays } from "grays";

grays();

Custom Graysale

import { grays } from "grays";

grays("html", 60);

Immediate (Default behavior)

import { grays } from "grays";

grays("html", 99, {
  immediate: true,
});

Automatic expiration on Immediate

import { grays } from "grays";

grays("html", 99, {
  expire: new Date(2022, 11, 1).getTime() // Expires automatically after "2022-12-1
  immediate: true,
});

Custom ClassName

import { grays } from "grays";

grays("html", 99, {
  className: "grays-for",
});

API

import { grays } from "grays";

const { cancel, apply } = grays();

Package Sidebar

Install

npm i grays

Weekly Downloads

2

Version

0.0.5

License

MIT

Unpacked Size

4.99 kB

Total Files

5

Last publish

Collaborators

  • baboonking