UNPKG

@cute-dw/core

Version:

This TypeScript library is the main part of a more powerfull package designed for the fast WEB software development. The cornerstone of the library is the **DataStore** class, which might be useful when you need a full control of the data, but do not need

3 lines (2 loc) 186 B
/** Represents a predicate (boolean-valued function) of two arguments. This is the two-arity specialization of `Predicate`. */ export type BiPredicate<T, U> = (t: T, u: U) => boolean;