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>
7 lines
No EOL
377 B
Text
7 lines
No EOL
377 B
Text
import { dateTimestampProvider } from '../scheduler/dateTimestampProvider';
|
|
import { map } from './map';
|
|
export function timestamp(timestampProvider) {
|
|
if (timestampProvider === void 0) { timestampProvider = dateTimestampProvider; }
|
|
return map(function (value) { return ({ value: value, timestamp: timestampProvider.now() }); });
|
|
}
|
|
//# sourceMappingURL=timestamp.js.map |