UNPKG
@gameye/sdk
Version:
latest (0.0.3-0)
0.0.3-0
0.0.2-2
0.0.2-1
0.0.2-0
0.0.1-7
0.0.1-6
0.0.1-5
0.0.1-4
0.0.1-3
0.0.1-2
0.0.1-1
0.0.1-0
0.0.0
Node.js SDK for Gameye
github.com/Gameye/gameye-sdk-node
Gameye/gameye-sdk-node
@gameye/sdk
/
module
/
utils
/
patch-reducer.js
9 lines
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ transform }
from
"deepkit"
;
export
function
reducePatch
(
state, patches
) {
return
transform
(state,
(
{ set }
) =>
{
for
(
const
patch
of
patches) {
set
(patch.
path
, patch.
value
); } }); }
//# sourceMappingURL=patch-reducer.js.map