@darkobits/dot-dot-dot
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Get a random loading message.

Install

npm i @darkobits/dot-dot-dot

Use

This package's default export is a function that returns a random message each time it is called.

import getMessage from '@darkobits/dot-dot-dot';

getMessage() //=> 'Reticulating splines...'

getMessageEvery

This package additionally exports a function, getMessageEvery, which accepts an interval and returns a function that, when invoked, will return a random message that updates every interval milliseconds.

import {getMessageEvery} from '@darkobits/dot-dot-dot';

const getMessageEveryTenSeconds = getMessageEvery(10000);

// T = 0ms
getMessageEveryTenSeconds(); // => 'Reticulating splines...';

// T = 1000ms
getMessageEveryTenSeconds(); // => 'Reticulating splines...';

// T = 1100ms
getMessageEveryTenSeconds(); // => 'Gathering particle sources...';

Readme

Keywords

Package Sidebar

Install

npm i @darkobits/dot-dot-dot

Weekly Downloads

0

Version

1.0.2

License

WTFPL

Unpacked Size

12.5 kB

Total Files

9

Last publish

Collaborators

  • darkobits