UNPKG

semantic-network

Version:

A utility library for manipulating a list of links that form a semantic interface to a network of resources.

10 lines 234 B
/** * Simple match on the 'id' attribute on the resources */ export const id = (lvalue, rvalue) => { if (lvalue.id && rvalue.id) { return lvalue.id === rvalue.id; } return false; }; //# sourceMappingURL=id.js.map