UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

13 lines (10 loc) 277 B
var clone = require('clone'); module.exports = function(options, defaults) { options = options || {}; Object.keys(defaults).forEach(function(key) { if (typeof options[key] === 'undefined') { options[key] = clone(defaults[key]); } }); return options; };