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>
11 lines
No EOL
322 B
Text
11 lines
No EOL
322 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isEmptyData = void 0;
|
|
function isEmptyData(data) {
|
|
if (typeof data === "string") {
|
|
return data.length === 0;
|
|
}
|
|
return data.byteLength === 0;
|
|
}
|
|
exports.isEmptyData = isEmptyData;
|
|
//# sourceMappingURL=isEmptyData.js.map |