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>
16 lines
417 B
Text
16 lines
417 B
Text
import got, { Options } from 'got'
|
|
import { strictEqual } from 'assert'
|
|
import Hook from '../../index.js'
|
|
|
|
Hook((exports, name) => {
|
|
if (name === 'got' && 'Options' in exports) {
|
|
exports.Options = 'nothing'
|
|
}
|
|
})
|
|
|
|
strictEqual(typeof got, 'function')
|
|
strictEqual(typeof got.post, 'function')
|
|
strictEqual(typeof got.stream, 'function')
|
|
strictEqual(typeof got.extend, 'function')
|
|
|
|
strictEqual(Options, 'nothing')
|