Brace expansion, as known from sh/bash, in JavaScript
How the donated funds are distributed
Kivach works on the Obyte network, and therefore you can track all donations.
This is a JavaScript library that implements brace expansion, a feature familiar from bash shell scripting, allowing users to generate multiple strings from a single pattern containing braces. It's designed for developers working in Node.js or browser environments who need to programmatically expand patterns like `file-{a,b,c}.jpg` into `['file-a.jpg', 'file-b.jpg', 'file-c.jpg']`. The library supports numeric ranges, alphabetic sequences, and nested expansions, making it useful for tasks like generating file names or test data.