Rocky_Mountain_Vending/.pnpm-store/v10/files/8c/f3d7ff70e215e01248e0a204a97d54c85c7ca1c8a65a3c4360c19a6ff96573577190cc33efd9464f4fb291eaf55b905e30f40f809a8c7f7a7bbf02b63ccbda
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

23 lines
489 B
Text

import LazyWrapper from './_LazyWrapper.js';
/**
* Reverses the direction of lazy iteration.
*
* @private
* @name reverse
* @memberOf LazyWrapper
* @returns {Object} Returns the new reversed `LazyWrapper` object.
*/
function lazyReverse() {
if (this.__filtered__) {
var result = new LazyWrapper(this);
result.__dir__ = -1;
result.__filtered__ = true;
} else {
result = this.clone();
result.__dir__ *= -1;
}
return result;
}
export default lazyReverse;