Files
ZERO_CODE/ZeroCodeProject/main/client/node_modules/.cache/babel-loader/1a48028b952abb687da9c920188d96597f1fad5e8b280e0bcc285afde76644d6.json

1 line
3.4 MiB
JSON
Raw Normal View History

2026-01-11 00:11:34 +08:00
{"ast":null,"code":"require(\"core-js/modules/es.array.push.js\");require(\"core-js/modules/web.dom-exception.stack.js\");require(\"core-js/modules/web.url-search-params.delete.js\");require(\"core-js/modules/web.url-search-params.has.js\");require(\"core-js/modules/web.url-search-params.size.js\");/*!\r\n * jsoneditor.js\r\n *\r\n * @brief\r\n * JSONEditor is a web-based tool to view, edit, format, and validate JSON.\r\n * It has various modes such as a tree editor, a code editor, and a plain text\r\n * editor.\r\n *\r\n * Supported browsers: Chrome, Firefox, Safari, Opera, Internet Explorer 8+\r\n *\r\n * @license\r\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not\r\n * use this file except in compliance with the License. You may obtain a copy\r\n * of the License at\r\n *\r\n * http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n * Unless required by applicable law or agreed to in writing, software\r\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\r\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\r\n * License for the specific language governing permissions and limitations under\r\n * the License.\r\n *\r\n * Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org\r\n *\r\n * @author Jos de Jong, <wjosdejong@gmail.com>\r\n * @version 5.5.11\r\n * @date 2017-01-06\r\n */(function webpackUniversalModuleDefinition(root,factory){if(typeof exports==='object'&&typeof module==='object')module.exports=factory();else if(typeof define==='function'&&define.amd)define([],factory);else if(typeof exports==='object')exports[\"JSONEditor\"]=factory();else root[\"JSONEditor\"]=factory();})(this,function(){return/******/function(modules){// webpackBootstrap\n/******/ // The module cache\n/******/var installedModules={};/******/ // The require function\n/******/function __webpack_require__(moduleId){/******/ // Check if module is in cache\n/******/if(installedModules[moduleId])/******/return installedModules[moduleId].exports;/******/ // Create a new module (and put it into the cache)\n/******/var module=installedModules[moduleId]={/******/exports:{},/******/id:moduleId,/******/loaded:false/******/};/******/ // Execute the module function\n/******/modules[moduleId].call(module.exports,module,module.exports,__webpack_require__);/******/ // Flag the module as loaded\n/******/module.loaded=true;/******/ // Return the exports of the module\n/******/return module.exports;/******/}/******/ // expose the modules object (__webpack_modules__)\n/******/__webpack_require__.m=modules;/******/ // expose the module cache\n/******/__webpack_require__.c=installedModules;/******/ // __webpack_public_path__\n/******/__webpack_require__.p=\"\";/******/ // Load entry module and return exports\n/******/return __webpack_require__(0);/******/}/************************************************************************/ /******/([/* 0 */ /***/function(module,exports,__webpack_require__){'use strict';var Ajv;try{Ajv=__webpack_require__(1);}catch(err){// no problem... when we need Ajv we will throw a neat exception\n}var treemode=__webpack_require__(51);var textmode=__webpack_require__(62);var util=__webpack_require__(54);/**\r\n\t * @constructor JSONEditor\r\n\t * @param {Element} container Container element\r\n\t * @param {Object} [options] Object with options. available options:\r\n\t * {String} mode Editor mode. Available values:\r\n\t * 'tree' (default), 'view',\r\n\t * 'form', 'text', and 'code'.\r\n\t * {function} onChange Callback method, triggered\r\n\t * on change of contents\r\n\t * {function} onError Callback method, triggered\r\n\t * when an error occurs\r\n\t * {Boolean} search Enable search box.\r\n\t *