This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/date-fns/is_wednesday/index.js

23 lines
499 B
JavaScript

var parse = require('../parse/index.js')
/**
* @category Weekday Helpers
* @summary Is the given date Wednesday?
*
* @description
* Is the given date Wednesday?
*
* @param {Date|String|Number} date - the date to check
* @returns {Boolean} the date is Wednesday
*
* @example
* // Is 24 September 2014 Wednesday?
* var result = isWednesday(new Date(2014, 8, 24))
* //=> true
*/
function isWednesday (dirtyDate) {
return parse(dirtyDate).getDay() === 3
}
module.exports = isWednesday