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>
46 lines
No EOL
794 B
Text
46 lines
No EOL
794 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.polyOut = exports.polyInOut = exports.polyIn = void 0;
|
|
var exponent = 3;
|
|
|
|
var polyIn = function custom(e) {
|
|
e = +e;
|
|
|
|
function polyIn(t) {
|
|
return Math.pow(t, e);
|
|
}
|
|
|
|
polyIn.exponent = custom;
|
|
return polyIn;
|
|
}(exponent);
|
|
|
|
exports.polyIn = polyIn;
|
|
|
|
var polyOut = function custom(e) {
|
|
e = +e;
|
|
|
|
function polyOut(t) {
|
|
return 1 - Math.pow(1 - t, e);
|
|
}
|
|
|
|
polyOut.exponent = custom;
|
|
return polyOut;
|
|
}(exponent);
|
|
|
|
exports.polyOut = polyOut;
|
|
|
|
var polyInOut = function custom(e) {
|
|
e = +e;
|
|
|
|
function polyInOut(t) {
|
|
return ((t *= 2) <= 1 ? Math.pow(t, e) : 2 - Math.pow(2 - t, e)) / 2;
|
|
}
|
|
|
|
polyInOut.exponent = custom;
|
|
return polyInOut;
|
|
}(exponent);
|
|
|
|
exports.polyInOut = polyInOut; |