(o1, o2)
| 18 | const DEFAULT_BUILD = 'functionscript'; |
| 19 | |
| 20 | function deepAssign(o1, o2) { |
| 21 | Object.keys(o2).forEach(k => { |
| 22 | if ( |
| 23 | o1[k] && o2[k] && |
| 24 | typeof o1[k] === 'object' && typeof o2[k] === 'object' |
| 25 | ) { |
| 26 | deepAssign(o1[k], o2[k]); |
| 27 | } else { |
| 28 | o1[k] = o2[k]; |
| 29 | } |
| 30 | }); |
| 31 | } |
| 32 | |
| 33 | class CreateCommand extends Command { |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected