Think different(ly)
Get out of your rut and learn new ways to think.
| const pulumi = require("@pulumi/pulumi"); | |
| const deepmerge = require('deepmerge'); | |
| const isPlainObject = require('is-plain-object'); | |
| const merge = function(x, y) { | |
| return deepmerge(x || {} ,y || {}, { isMergeableObject: isPlainObject }); | |
| }; | |
| class PulumiContext { |