All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._cloneDataView.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
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;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy