/
dany
/
ReshenijaBotInformationSite
Обзор
Документация
Войти
/
dany
/
ReshenijaBotInformationSite
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
node_modules/is-shared-array-buffer/index.js
21 строка
454 B
Daniil
Initial commit
31 окт 2023, 01:10
31 окт 2023, 01:10
a171ae1
Код
Авторство
О чём код?
'use strict'; var callBound = require('call-bind/callBound'); var $byteLength = callBound('SharedArrayBuffer.prototype.byteLength', true); module.exports = $byteLength ? function isSharedArrayBuffer(obj) { if (!obj || typeof obj !== 'object') { return false; } try { $byteLength(obj); return true; } catch (e) { return false; } } : function isSharedArrayBuffer(obj) { // eslint-disable-line no-unused-vars return false; };