You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							507 B
						
					
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							507 B
						
					
					
				var cloneArrayBuffer = require('./_cloneArrayBuffer');
 | 
						|
 | 
						|
/**
 | 
						|
 * 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);
 | 
						|
}
 | 
						|
 | 
						|
module.exports = cloneDataView;
 |