Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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!
- Host: GitHub
- URL: https://github.com/kasperlaursen/er-det-fredag
- Owner: kasperlaursen
- Created: 2021-05-02T15:07:48.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-01T19:52:30.000Z (11 months ago)
- Last Synced: 2024-10-11T12:57:26.338Z (26 days ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 😞");
```