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>
22 lines
No EOL
567 B
Text
22 lines
No EOL
567 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isGMT = exports.dnsLookup = void 0;
|
|
const dns_1 = require("dns");
|
|
function dnsLookup(host, opts) {
|
|
return new Promise((resolve, reject) => {
|
|
(0, dns_1.lookup)(host, opts, (err, res) => {
|
|
if (err) {
|
|
reject(err);
|
|
}
|
|
else {
|
|
resolve(res);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
exports.dnsLookup = dnsLookup;
|
|
function isGMT(v) {
|
|
return v === 'GMT';
|
|
}
|
|
exports.isGMT = isGMT;
|
|
//# sourceMappingURL=util.js.map |