UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

26 lines (19 loc) 506 B
var naturalCompare = require('../../utils/natural-compare'); function naturalSorter(scope1, scope2) { return naturalCompare(scope1[1], scope2[1]); } function standardSorter(scope1, scope2) { return scope1[1] > scope2[1] ? 1 : -1; } function sortSelectors(selectors, method) { var sorter; switch (method) { case 'natural': sorter = naturalSorter; break; case 'standard': sorter = standardSorter; } return selectors.sort(sorter); } module.exports = sortSelectors;