import { type Obj } from './obj.js';

const compareObjs = (a: Obj, b: Obj) => a.val - b.val;


export { compareObjs }
