Drop duplicate export (#84)

This commit is contained in:
Federico Brigante 2019-03-14 17:32:19 +08:00 committed by Sindre Sorhus
parent 79144f9542
commit 28913cae88

View file

@ -366,8 +366,5 @@ Object.defineProperties(is, {
}
});
module.exports = is; // For CommonJS default export support
export default is;
// For CommonJS default export support
module.exports = is;
module.exports.default = is;