Use typeof

This commit is contained in:
Aya Morisawa 2018-09-01 23:29:22 +09:00
parent 98ff6cdf91
commit d60683d7ce

View file

@ -25,7 +25,7 @@ export default (params: any) => new Promise(async (res, rej) => {
const set = {} as any;
if (ps.disableRegistration === true || ps.disableRegistration === false) {
if (typeof ps.disableRegistration === 'boolean') {
set.disableRegistration = ps.disableRegistration;
}