This commit is contained in:
12
node_modules/sort-desc/index.js
generated
vendored
Normal file
12
node_modules/sort-desc/index.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/*!
|
||||
* 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;
|
||||
};
|
||||
Reference in New Issue
Block a user