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>
26 lines
No EOL
760 B
Text
26 lines
No EOL
760 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = lab;
|
|
|
|
var _index = require("../../../lib-vendor/d3-color/src/index.js");
|
|
|
|
var _color = _interopRequireDefault(require("./color.js"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function lab(start, end) {
|
|
var l = (0, _color.default)((start = (0, _index.lab)(start)).l, (end = (0, _index.lab)(end)).l),
|
|
a = (0, _color.default)(start.a, end.a),
|
|
b = (0, _color.default)(start.b, end.b),
|
|
opacity = (0, _color.default)(start.opacity, end.opacity);
|
|
return function (t) {
|
|
start.l = l(t);
|
|
start.a = a(t);
|
|
start.b = b(t);
|
|
start.opacity = opacity(t);
|
|
return start + "";
|
|
};
|
|
} |