Initial Save
This commit is contained in:
11
node_modules/core-js-pure/internals/an-uint8-array.js
generated
vendored
Normal file
11
node_modules/core-js-pure/internals/an-uint8-array.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
var classof = require('../internals/classof');
|
||||
|
||||
var $TypeError = TypeError;
|
||||
|
||||
// Perform ? RequireInternalSlot(argument, [[TypedArrayName]])
|
||||
// If argument.[[TypedArrayName]] is not "Uint8Array", throw a TypeError exception
|
||||
module.exports = function (argument) {
|
||||
if (classof(argument) === 'Uint8Array') return argument;
|
||||
throw new $TypeError('Argument is not an Uint8Array');
|
||||
};
|
||||
Reference in New Issue
Block a user