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>
12 lines
389 B
Text
12 lines
389 B
Text
import { Subscriber } from '../Subscriber';
|
|
|
|
/**
|
|
* Subscribes to an ArrayLike with a subscriber
|
|
* @param array The array or array-like to subscribe to
|
|
*/
|
|
export const subscribeToArray = <T>(array: ArrayLike<T>) => (subscriber: Subscriber<T>) => {
|
|
for (let i = 0, len = array.length; i < len && !subscriber.closed; i++) {
|
|
subscriber.next(array[i]);
|
|
}
|
|
subscriber.complete();
|
|
};
|