mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-06 19:15:12 +02:00
12 lines
395 B
JavaScript
12 lines
395 B
JavaScript
'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');
|
|
};
|