Skip to main content

wait

Tags CI Status License

import { wait } from "https://deno.land/x/wait/mod.ts";

const spinner = wait("Loading mesozoic").start();

setTimeout(() => {
  spinner.color = "yellow";
  spinner.text = "Loading meteorite";
}, 1000);

setTimeout(() => {
  spinner.succeed("Started human race");
}, 2000);

other

contribution

Pull request, issues and feedback are very welcome. Code style is formatted with deno fmt and commit messages are done following Conventional Commits spec.

licence

Copyright 2020-present, the denosaurs team. All rights reserved. MIT license.