@sythivo/robloxstringcompressor
TypeScript icon, indicating that this package has built-in type declarations

0.1.0-2 • Public • Published

RobloxStringCompressor

Fastest string compressor for the roblox platform, powered by Roblox API. Credits goes to roblox for making this entirely possible.

Example

Luau Example

local RobloxStringCompressor = require(path.to.module)

local inputString = [[Some very long string here]];

local compressedString = RobloxStringCompressor.compress(inputString);
local decompressedString = RobloxStringCompressor.decompress(compressedString);

roblox-ts Example

import {compress, decompress} from "@sythivo/robloxstringcompressor";

const inputString = `Some very long string here`;

const compressedString = compress(inputString);
const decompressedString = decompress(compressedString);

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.0-2
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.0-2
    0
  • 0.1.0-1
    0
  • 0.1.0
    1

Package Sidebar

Install

npm i @sythivo/robloxstringcompressor

Weekly Downloads

1

Version

0.1.0-2

License

ISC

Unpacked Size

3.22 kB

Total Files

5

Last publish

Collaborators

  • sythivo