[bugfix] utils export (#521)

This commit is contained in:
neverland 2018-09-06 18:59:12 +08:00 committed by GitHub
parent 39f8c5c5e8
commit 1f06c97a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
dist/utils/index.js vendored
View File

@ -7,7 +7,7 @@ function isObj(x) {
return x !== null && (type === 'object' || type === 'function');
}
export default {
export {
isObj,
isDef
};

View File

@ -7,7 +7,7 @@ function isObj(x) {
return x !== null && (type === 'object' || type === 'function');
}
export default {
export {
isObj,
isDef
};