Rocky_Mountain_Vending/.pnpm-store/v10/files/72/4de3e5ded88441deeee71c8c2ca57bebcf6ec68dad2796405e5ae1bd5b4d8720e90d6d0da3f4e218b0318e3221ed4b674387226b857d0a3b8f96ba5c580050
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
257 B
Text

/**
* Converts an ASCII `string` to an array.
*
* @private
* @param {string} string The string to convert.
* @returns {Array} Returns the converted array.
*/
function asciiToArray(string) {
return string.split('');
}
module.exports = asciiToArray;