Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
No EOL
588 B
Text
29 lines
No EOL
588 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _default;
|
|
exports.sum = sum;
|
|
|
|
var _none = _interopRequireDefault(require("./none.js"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function _default(series) {
|
|
var sums = series.map(sum);
|
|
return (0, _none.default)(series).sort(function (a, b) {
|
|
return sums[a] - sums[b];
|
|
});
|
|
}
|
|
|
|
function sum(series) {
|
|
var s = 0,
|
|
i = -1,
|
|
n = series.length,
|
|
v;
|
|
|
|
while (++i < n) if (v = +series[i][1]) s += v;
|
|
|
|
return s;
|
|
} |