UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

22 lines (17 loc) 556 B
import _extends from "@babel/runtime/helpers/extends"; import _createClass from "@babel/runtime/helpers/createClass"; import _classCallCheck from "@babel/runtime/helpers/classCallCheck"; var Field = /*#__PURE__*/_createClass(function Field(fields) { _classCallCheck(this, Field); _extends(this, fields); }); export function isFormField(obj) { return obj instanceof Field; } export default function createFormField(field) { if (isFormField(field)) { return field; } return new Field(field); } //# sourceMappingURL=createFormField.js.map