You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
274 B

2 months ago
  1. // @flow
  2. import type { SideObject } from '../types';
  3. import getFreshSideObject from './getFreshSideObject';
  4. export default function mergePaddingObject(
  5. paddingObject: $Shape<SideObject>
  6. ): SideObject {
  7. return {
  8. ...getFreshSideObject(),
  9. ...paddingObject,
  10. };
  11. }