UNPKG

mapbox-gl

Version:
12 lines (10 loc) 227 B
/*! * sort-desc <https://github.com/helpers/sort-desc> * * Copyright (c) 2014 Jon Schlinkert, contributors. * Licensed under the MIT License */ 'use strict'; module.exports = function (a, b) { return a < b ? -1 : 1; };