faf1cc51d720243468a89b7853a06a6a3dad214b27f17dfecb0a4409d565bd1ee19a613bd7e40b1e6ca0cf1fa792e7353af132ed7f3a411771befd41c3fb34 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. });