Drop duplicate export

This commit is contained in:
Federico Brigante 2019-03-13 14:28:18 +08:00 committed by GitHub
parent 79144f9542
commit 19c992747d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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