Blame view
node_modules/es5-ext/error/is-error.js
207 Bytes
f7563de62
|
1 2 3 4 5 6 7 8 9 |
'use strict'; var toString = Object.prototype.toString , id = toString.call(new Error()); module.exports = function (x) { return (x && ((x instanceof Error) || (toString.call(x)) === id)) || false; }; |