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 246 B
/** * Simple match on the name attribute on the resources */ export const name = (lvalue, rvalue) => { if (lvalue.name && rvalue.name) { return lvalue.name === rvalue.name; } return false; }; //# sourceMappingURL=name.js.map