Rocky_Mountain_Vending/.pnpm-store/v10/files/81/a8d29819b3b436af33113e12a2e02324b2d10615bd3350bdf7d2f0ea8e4020f2b69f84d16061e947f84d6831979e779dcdd83e683a0b36fcfc0f0ead45eb7d
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

11 lines
237 B
Text

'use strict';
var parse = require('../');
var test = require('tape');
test('parse with modifier functions', function (t) {
t.plan(1);
var argv = parse(['-b', '123'], { boolean: 'b' });
t.deepEqual(argv, { b: true, _: [123] });
});