Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getFreshSideObject.js.flow « utils « lib « package « popperjs - github.com/gohugoio/hugo-mod-jslibs-dist.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b57a5bf89ccbe2df1b7117ca63b0f01d61f5b67 (plain)
1
2
3
4
5
6
7
8
9
10
11
// @flow
import type { SideObject } from '../types';

export default function getFreshSideObject(): SideObject {
  return {
    top: 0,
    right: 0,
    bottom: 0,
    left: 0,
  };
}