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