Repository URL to install this package:
|
Version:
0.9.2 ▾
|
// (c) Copyright 2023 Supertenant Ltd. - all rights reserved.
// See LICENSE file in project root for license terms.
"use strict";module.exports=function ensureNestedObjectExists(object,pathInObject){var[pathInObject,...tail]=pathInObject;object[pathInObject]||(object[pathInObject]={}),1<=tail.length&&ensureNestedObjectExists(object[pathInObject],tail)};