https://github.com/hannasdev/when-is-my-next-salary
A small app to tell you when your next salary payout is
https://github.com/hannasdev/when-is-my-next-salary
Last synced: about 1 year ago
JSON representation
A small app to tell you when your next salary payout is
- Host: GitHub
- URL: https://github.com/hannasdev/when-is-my-next-salary
- Owner: hannasdev
- Created: 2022-02-09T09:24:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-13T12:07:24.000Z (over 4 years ago)
- Last Synced: 2024-03-27T20:21:53.760Z (over 2 years ago)
- Language: TypeScript
- Size: 219 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# When is my next salary?
This is a small app that can tell you when your next salary payout is, taking holidays and weekends into account.
## How to
```js
const app = new App();
// Defaults to 25th / monthly
console.log(app.getNextPayday());
/*
{
date: '02/25/2022',
weekDay: 'Friday',
weekEnd: false,
isHoliday: false,
holidayName: '',
payday: '02/25/2022'
}
*/
```