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>
13 lines
382 B
Text
13 lines
382 B
Text
/**
|
|
* https://tc39.es/ecma402/#sec-getnumberoption
|
|
* @param options
|
|
* @param property
|
|
* @param min
|
|
* @param max
|
|
* @param fallback
|
|
*/
|
|
import { DefaultNumberOption } from './DefaultNumberOption';
|
|
export function GetNumberOption(options, property, minimum, maximum, fallback) {
|
|
var val = options[property];
|
|
return DefaultNumberOption(val, minimum, maximum, fallback);
|
|
}
|