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