semantic-network
Version:
A utility library for manipulating a list of links that form a semantic interface to a network of resources.
12 lines • 440 B
JavaScript
import { canonicalOrSelf } from './canonicalOrSelf';
import { name } from './name';
/**
* A default set of comparisons made to check if two resource
* representation refer to the same resource in a collection.
*
* The most specific and robust equality check is first, with the most vague and
* optimistic last.
*
*/
export const defaultEqualityOperators = [canonicalOrSelf, name];
//# sourceMappingURL=defaultEqualityOperators.js.map