feat: readme and randomstring example

This commit is contained in:
2023-11-11 19:50:09 +01:00
parent 358e63c527
commit 1e52f151e4
2 changed files with 15 additions and 0 deletions

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# util-utils
`util-utils` means "útil" (useful in spanish) + utils (utilities).
This package is a zero-dependency everyday utility library for lazy Javascript developers.
# Features
Will be worked on progressively, but for now:
- [randomstring](https://github.com/SrIzan10/util-utils/tree/main/examples/randomstring.ts)

4
examples/randomstring.ts Normal file
View File

@@ -0,0 +1,4 @@
import { randomString } from "../src/index.ts";
console.log(randomString(10));
// => (random 10-character string)