semantic-network
Version:
A utility library for manipulating a list of links that form a semantic interface to a network of resources.
15 lines • 582 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.defaultEqualityOperators = void 0;
var canonicalOrSelf_1 = require("./canonicalOrSelf");
var name_1 = require("./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.
*
*/
exports.defaultEqualityOperators = [canonicalOrSelf_1.canonicalOrSelf, name_1.name];
//# sourceMappingURL=defaultEqualityOperators.js.map