UNPKG

formiojs

Version:

Common js library for client side interaction with <form.io>

24 lines (17 loc) 1.09 kB
"use strict"; function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } module.exports = /*#__PURE__*/function () { function Rule(component, settings, config) { _classCallCheck(this, Rule); this.component = component; this.settings = settings; this.config = config; } _createClass(Rule, [{ key: "check", value: function check() {} }]); return Rule; }();