UNPKG

@antv/g6

Version:

A Graph Visualization Framework in JavaScript

15 lines (13 loc) 429 B
import type { STDSize, Size } from '../types'; /** * <zh/> 解析尺寸配置 * * <en/> Parse size configuration * @param size - <zh/> 尺寸配置 | <en/> size configuration * @returns <zh/> 标准尺寸格式 | <en/> standard size format */ export function parseSize(size: Size = 0): STDSize { if (typeof size === 'number') return [size, size, size] as STDSize; const [x, y = x, z = x] = size; return [x, y, z]; }