UNPKG
civ7-modding-tools
Version:
latest (1.3.0)
1.3.0
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.2
1.2.1
1.2.0
Mod generation tool for Civilization 7.
github.com/izica/civ7-modding-tools
izica/civ7-modding-tools
civ7-modding-tools
/
dist
/
utils
/
fill.js
12 lines
•
324 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
fill
= fill;
function
fill
(
payload = {}
) {
for
(
const
[key, value]
of
Object
.
entries
(payload)) {
if
(
this
.
hasOwnProperty
(key)) {
this
[key] = value; } }
return
this
; }
//# sourceMappingURL=fill.js.map