UNPKG

react-photoswipe-gallery

Version:
9 lines 193 B
function sortNodes(a, b) { if (a === b) return 0; // eslint-disable-next-line no-bitwise if (a.compareDocumentPosition(b) & 2) { return 1; } return -1; } export default sortNodes;