0.0.8 • Published 1 year ago

@r-t-p/utilities v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Utilities

This is a tool back of random useful functions.

Getting Started

npm install --save @r-t-p/utilities

UUID

  import { generateUUID, isUUID } from "@r-t-p/utilities";

  for (let i = 0; i < 500; ++i) {
    let id = generateUUID();
    if (!isUUID(id)) {
      console.log(i, id);
      throw new Error("Failure");
    }
  }

Contributing

npm run test # Runs the test runner
npm run build # Builds using `tsc` from configs in the `tsconfig.json`
npm run dev # Runs build and watches for changes
0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago