Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Latest commit

 

History

History
22 lines (17 loc) · 503 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 503 Bytes

Kirishima Banner

@kirishima/collection

Features

  • Written in TypeScript
  • Asynchronous

Example

import { KirishimaCollection } from "@kirishima/collection";
(async () => {
    const collection = new KirishimaCollection();
    await collection.set("key", "value");
    const savedData = await collection.get("key");
    console.log(savedData);
})()