UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

12 lines (9 loc) 176 B
'use strict' function miniflat(value) { return value === null || value === undefined ? [] : 'length' in value ? value : [value] } module.exports = miniflat