{"version":3,"file":"index.cjs","sources":["../src/decreasing.js","../src/increasing.js"],"sourcesContent":["/**\n * Compare two dates in decreasing order using the native comparison\n * operators.\n *\n * @param {any} a The first parameter.\n * @param {any} b The second parameter.\n * @return {number} -1 if a > b, 1 if a < b, and 0 otherwise.\n */\nconst decreasing = (a, b) => (a > b ? -1 : a < b ? 1 : 0);\nexport default decreasing;\n","/**\n * Compare two dates in increasing order using the native comparison\n * operators.\n *\n * @param {any} a The first parameter.\n * @param {any} b The second parameter.\n * @return {number} -1 if a < b, 1 if a > b, and 0 otherwise.\n */\nconst increasing = (a, b) => (a < b ? -1 : a > b ? 1 : 0);\nexport default increasing;\n"],"names":["a","b"],"mappings":"mBAQmB,SAACA,EAAGC,UAAOD,EAAIC,GAAK,EAAID,EAAIC,EAAI,EAAI,sBCApC,SAACD,EAAGC,UAAOD,EAAIC,GAAK,EAAID,EAAIC,EAAI,EAAI"}