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>
18 lines
422 B
Text
18 lines
422 B
Text
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
"use strict";
|
|
|
|
module.exports.deprecate = (fn, msg) => {
|
|
let once = true;
|
|
return function deprecate() {
|
|
if (once) {
|
|
// eslint-disable-next-line no-console
|
|
console.warn(`DeprecationWarning: ${msg}`);
|
|
once = false;
|
|
}
|
|
// eslint-disable-next-line prefer-rest-params
|
|
return fn.apply(this, arguments);
|
|
};
|
|
};
|