Rocky_Mountain_Vending/.pnpm-store/v10/files/9e/af7d0e580464c68dc5e57cdc20e5b00450a2e3d731634f428a0987ad26b4e4f7c7c8f1c6864a5c482d181c59ca26bd007c508f0826859b250cc25d3c1ace34
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
255 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('');
}
export default asciiToArray;