"use strict"; module.exports = function ensureObject(object, property) { if (object[property] == null) { object[property] = {}; } };