volapyk
v1.6.1
Published
Generate random and meaningless blocks or sequences
Downloads
589
Maintainers
Readme
🗣️ 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.