luxass / volapyk

Generate random and meaningless blocks or sequences

Home Page:https://luxass.dev/projects/volapyk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🗣️ volapyk

/vɔlɑˈpyg/, "volapyk", or "volapük"

📦 Installation

npm install volapyk

📚 Usage

import { createVolapyk, createVolapykChunks, createVolapykText } from "volapyk";

// will create a text string of 10 words
const volapyk = createVolapyk({
  type: "text",
  words: 10
});

// will create a text string of 10 words using only the characters "abcdefghijkl"
const volapyk = createVolapyk({
  type: "text",
  words: 10,
  chars: "abcdefghijkl"
});

// create chunks instead of a string, or you can use the createVolapykChunks function
const volapyk = createVolapyk({
  type: "chunks"
});

📄 License

Published under MIT License.

About

Generate random and meaningless blocks or sequences

https://luxass.dev/projects/volapyk

License:MIT License


Languages

Language:TypeScript 99.2%Language:JavaScript 0.8%