Rocky_Mountain_Vending/.pnpm-store/v10/files/dc/28c8a641fe4dd0416aabde8d1abe992e8a71bba0be71c71a5ce1fc31182c5108f81ff84863bfb35ff1a6a6008fdbf67f3e44bcfbd20cbafdcc2ceff19068e9
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

12 lines
296 B
Text

/**
* The base implementation of `_.isNaN` without support for number objects.
*
* @private
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.
*/
function baseIsNaN(value) {
return value !== value;
}
module.exports = baseIsNaN;