Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kasperlaursen/er-det-fredag

Have you ever been wondering if it was Friday? If yes, this package has the answer for you!
https://github.com/kasperlaursen/er-det-fredag

Last synced: 3 days ago
JSON representation

Have you ever been wondering if it was Friday? If yes, this package has the answer for you!

Awesome Lists containing this project

README

        




Have you ever been wondering if it was Friday?

### How to use? 🤔
1. Install the package:

With npm
```
npm i er-det-fredag
```

or yarn:
```
yarn add er-det-fredag
```

2. Require the module in your code

```js
const erdetfredag = require("erdetfredag");
```

3. Do something with the result!
```js
const erdetfredag = require("erdetfredag");

console.log(erdetfredag ? "It's Friday! 🥳" : "Sorry, it's not Friday 😞");
```