Added space after if

dev
Roman Burunkov 5 years ago committed by GitHub
parent 53db3e5c68
commit 3bcc6eb445
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/utilities.js

@ -32,7 +32,7 @@ const isFunc = func => func && func.constructor && func.call && func.apply ? tru
const buildOptions = function(){
let result = {};
[...arguments].forEach(options => {
if(!options || typeof options !== 'object') return;
if (!options || typeof options !== 'object') return;
Object.keys(options).forEach(key => result[key] = options[key]);
});
return result;

Loading…
Cancel
Save