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