Merge branch 'master' into commonjs-default-export

This commit is contained in:
Sindre Sorhus 2017-11-07 03:07:00 +07:00 committed by GitHub
commit 1b4296cf0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -246,7 +246,7 @@ Object.defineProperties(is, {
}
});
export default is; // tslint:disable-line:no-default-export
export default is;
// For CommonJS default export support
module.exports = is;