mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
Also check the lang in case insensitive
This commit is contained in:
parent
33e7f7384e
commit
2a9630258f
22658 changed files with 3562773 additions and 3562767 deletions
32
node_modules/lodash/_cloneDataView.js
generated
vendored
32
node_modules/lodash/_cloneDataView.js
generated
vendored
|
@ -1,16 +1,16 @@
|
|||
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;
|
||||
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue