Rocky_Mountain_Vending/.pnpm-store/v10/files/d3/3ed77ebe17af4e477d4af9d461c135a11da29afa7f2f51ee0d9f69b305fa5b00856e09c5db31be789e65765056fef5a6b065b0928d75fd24525a9dea59ae99
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

16 lines
505 B
Text

import cloneArrayBuffer from './_cloneArrayBuffer.js';
/**
* Creates a clone of `dataView`.
*
* @private
* @param {Object} dataView The data view to clone.
* @param {boolean} [isDeep] Specify a deep clone.
* @returns {Object} Returns the cloned data view.
*/
function cloneDataView(dataView, isDeep) {
var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;
return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
}
export default cloneDataView;