Safely unwrap optionnal values. It's very tiny module (94 bytes) that checks if a value can safely be used
const { unwrap } = require("unwrap.js")
unwrap(undefinedObject) // {}
unwrap(undefinedObject, []) // []
obj = ["hello"]
unwrap(obj) // ["hello"]