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.
11 lines
358 B
11 lines
358 B
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)
|
|
}
|