"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isSameQuarter; var _index = _interopRequireDefault(require("../startOfQuarter/index.js")); var _index2 = _interopRequireDefault(require("../_lib/requiredArgs/index.js")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * @name isSameQuarter * @category Quarter Helpers * @summary Are the given dates in the same quarter (and year)? * * @description * Are the given dates in the same quarter (and year)? * * @param {Date|Number} dateLeft - the first date to check * @param {Date|Number} dateRight - the second date to check * @returns {Boolean} the dates are in the same quarter (and year) * @throws {TypeError} 2 arguments required * * @example * // Are 1 January 2014 and 8 March 2014 in the same quarter? * const result = isSameQuarter(new Date(2014, 0, 1), new Date(2014, 2, 8)) * //=> true * * @example * // Are 1 January 2014 and 1 January 2015 in the same quarter? * const result = isSameQuarter(new Date(2014, 0, 1), new Date(2015, 0, 1)) * //=> false */ function isSameQuarter(dirtyDateLeft, dirtyDateRight) { (0, _index2.default)(2, arguments); var dateLeftStartOfQuarter = (0, _index.default)(dirtyDateLeft); var dateRightStartOfQuarter = (0, _index.default)(dirtyDateRight); return dateLeftStartOfQuarter.getTime() === dateRightStartOfQuarter.getTime(); } module.exports = exports.default;