UNPKG

json-timeline

Version:

Generate Interactive Timelines stored in JSON Advents with Tags.

91 lines (70 loc) 2.52 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JSDoc: Source: util/compareDates.js</title> <script src="scripts/prettify/prettify.js"> </script> <script src="scripts/prettify/lang-css.js"> </script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css"> <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css"> </head> <body> <div id="main"> <h1 class="page-title">Source: util/compareDates.js</h1> <section> <article> <pre class="prettyprint source linenums"><code>/** * @module compareDates */ /** * @function * @name compareDates * @description Comparison Function for Dates * @param {Object} date1 Date 1 * @param {Object} date2 Date 2 * @returns -1 if date1 &lt; date2, 0 if date1 == date2, 1 if date1 > date2 */ function compareDates(date1, date2) { // Year if (date1.year &lt; date2.year) { return -1; } if (date1.year > date2.year) { return 1; } // Month if (date1.month &lt; date2.month) { return -1; } if (date1.month > date2.month) { return 1; } // Day if (date1.day &lt; date2.day) { return -1; } if (date1.day > date2.day) { return 1; } // Equivalent return 0; } module.exports = compareDates; </code></pre> </article> </section> </div> <nav> <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-advents.html">advents</a></li><li><a href="module-compareDates.html">compareDates</a></li><li><a href="module-groupAdvents.html">groupAdvents</a></li><li><a href="module-index.html">index</a></li><li><a href="module-isType.html">isType</a></li><li><a href="module-json-timeline.html">json-timeline</a></li><li><a href="module-loadAdvents.html">loadAdvents</a></li><li><a href="module-renderAdvents.html">renderAdvents</a></li><li><a href="module-schemas.html">schemas</a></li><li><a href="module-sortAdvents.html">sortAdvents</a></li><li><a href="module-validateSchema.html">validateSchema</a></li></ul> </nav> <br class="clear"> <footer> Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Mon Dec 14 2020 23:14:56 GMT-0500 (Eastern Standard Time) </footer> <script> prettyPrint(); </script> <script src="scripts/linenumber.js"> </script> </body> </html>