auto correct is the bane of my existence and my best friend
This commit is contained in:
Robert Mennell
2019-07-19 15:49:03 -07:00
committed by GitHub
parent 4633605dc6
commit 5033e1b471

View File

@ -3,7 +3,7 @@
Results in a boolean representation of a specific date.
Pass the specific date object firstly.
Use `Date.getDay()` to check weekday by using a modulo operator as then returning a boolean.
Use `Date.getDay()` to check weekday by using a modulo operator and then returning a boolean.
```js
const isWeekday = (t = new Date()) => {