mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
10 lines
358 B
JavaScript
10 lines
358 B
JavaScript
var nfre = /NotFound/i
|
|
|
|
exports.verifyNotFoundError = function verifyNotFoundError (err) {
|
|
return nfre.test(err.message) || nfre.test(err.name)
|
|
}
|
|
|
|
exports.isTypedArray = function isTypedArray (value) {
|
|
return (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) ||
|
|
(typeof Uint8Array !== 'undefined' && value instanceof Uint8Array)
|
|
}
|