JSPM

@rbxts/cleanser

2.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 20
  • Score
    100M100P100Q40967F
  • License MIT

A port of RobloxianDemo's Cleanser class.

Package Exports

  • @rbxts/cleanser
  • @rbxts/cleanser/src/Cleanser/init.luau

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@rbxts/cleanser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Cleanser

Cleanser is a highly personalized, all-in-one, and lightweight implementation served for garbage collection.

Installation

๐Ÿ“ฆ โ€” NPM:

npm i @rbxts/cleanser

๐Ÿงถ โ€” Yarn:

yarn add @rbxts/cleanser

๐Ÿ“€ โ€” pnPM:

pnpm add @rbxts/cleanser

Cleanser API

Types

interface Destroyable {
    TimedDestroy(waitTime: number): boolean;
    Cleanse(): void;
    Destroy(): void;
}

type Object =
    | never
    | undefined
    | ((this: defined) => void)
    | ((_: defined) => void)
    | ExtractKeys<defined, () => void>
    | thread
    | RBXScriptConnection
    | Cleanser
    | Cleanser.Destroyable;

Constructor

const cleanser = new Cleanser.Cleanser<{ Instances: Array<Instance> }>();

Cleanser.Is

public Is(
        object?: T extends Cleanser.Object | Cleanser.Destroyable | true ? RBXScriptConnection : T | defined,
    ): boolean;

Returns whether or not the specified class is a valid Cleanser.

Cleanser.Grant

public Grant(object?: T extends Cleanser.Object | Cleanser.Destroyable | true ? RBXScriptConnection : T |   defined,
    ): Cleanser;

Grant a new cleanser task.

Cleanser.TimedDestroy

public TimedDestroy(waitTime: number): boolean;

Destroy and cleanup a cleanser after a certain amount of time has elapsed.

Cleanser.Cleanse

public Cleanse(): void;

Cleanse the specified cleanser object(s).

Cleanser.Destroy

public Destroy(): void;

Destroy and cleanup a Cleanser (making it unusable).

Example

// Services
import { Workspace } from "@rbxts/services";

// Modules
import { Cleanser } from "@rbxts/cleanser";

// Functions
const Part = new Instance("Part");
Part.Name = "Part";
Part.Position = new Vector3(0, 5, 0);
Part.Size = new Vector3(5, 1, 5);
Part.Parent = Workspace;

const PartCleanser = new Cleanser.Cleanser(Part);
task.wait(3);
PartCleanser.Cleanse();