UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

10 lines (9 loc) 214 B
"use strict"; exports.__esModule = true; exports.default = sortAscending; function sortAscending(list) { return list.sort(function (a, b) { return a - b; }); }; module.exports = exports["default"];