MCPcopy
hub / github.com/harttle/liquidjs / Comparable

Interface Comparable

src/drop/comparable.ts:3–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { isFunction } from '../util'
2
3export interface Comparable {
4 equals: (rhs: any) => boolean;
5 gt: (rhs: any) => boolean;
6 geq: (rhs: any) => boolean;
7 lt: (rhs: any) => boolean;
8 leq: (rhs: any) => boolean;
9}
10
11export function isComparable (arg: any): arg is Comparable {
12 return (

Callers

nothing calls this directly

Implementers 2

EmptyDropsrc/drop/empty-drop.ts
NullDropsrc/drop/null-drop.ts

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…