main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
274 bytes
|
Line | |
---|
1 | // @flow
|
---|
2 | import type { SideObject } from '../types';
|
---|
3 | import getFreshSideObject from './getFreshSideObject';
|
---|
4 |
|
---|
5 | export default function mergePaddingObject(
|
---|
6 | paddingObject: $Shape<SideObject>
|
---|
7 | ): SideObject {
|
---|
8 | return {
|
---|
9 | ...getFreshSideObject(),
|
---|
10 | ...paddingObject,
|
---|
11 | };
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.