UNPKG

@schema-render/core-react

Version:

Through a set of simple JSON Schema, efficiently build a set of forms.

13 lines (12 loc) 355 B
import { isNumber } from "./checking"; /** * 字符串化路径 */ export function stringifyPath(path) { return path.join('.'); } /** * 将 string 或 number 类型的样式值标准化为 string 类型样式值 * @param value 样式值 */ export function normalizeStyleValue(value) { return isNumber(value) ? `${String(value)}px` : value; }