You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
372 B

var nfre = /NotFound/i
module.exports.verifyNotFoundError = function verifyNotFoundError (err) {
return nfre.test(err.message) || nfre.test(err.name)
}
module.exports.isTypedArray = function isTypedArray (value) {
return (typeof ArrayBuffer != 'undefined' && value instanceof ArrayBuffer)
|| (typeof Uint8Array != 'undefined' && value instanceof Uint8Array)
}