es7.error.is-error.js 217 B

123456789
  1. // https://github.com/ljharb/proposal-is-error
  2. var $export = require('./_export');
  3. var cof = require('./_cof');
  4. $export($export.S, 'Error', {
  5. isError: function isError(it) {
  6. return cof(it) === 'Error';
  7. }
  8. });