Json to Json comparator 수정 - update docs

This commit is contained in:
freestrings 2019-03-06 18:19:06 +09:00
parent cdf0446a69
commit 175a015eb2
5 changed files with 10 additions and 50 deletions

File diff suppressed because one or more lines are too long

14
docs/bootstrap.js vendored
View File

@ -67,6 +67,9 @@
/******/ "__wbindgen_string_new": function(p0i32,p1i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_string_new"](p0i32,p1i32);
/******/ },
/******/ "__wbindgen_object_clone_ref": function(p0i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_object_clone_ref"](p0i32);
/******/ },
/******/ "__wbindgen_cb_forget": function(p0i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_cb_forget"](p0i32);
/******/ },
@ -76,17 +79,14 @@
/******/ "__wbindgen_string_get": function(p0i32,p1i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_string_get"](p0i32,p1i32);
/******/ },
/******/ "__wbindgen_object_clone_ref": function(p0i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_object_clone_ref"](p0i32);
/******/ },
/******/ "__wbindgen_throw": function(p0i32,p1i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_throw"](p0i32,p1i32);
/******/ },
/******/ "__wbindgen_closure_wrapper59": function(p0i32,p1i32,p2i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_closure_wrapper59"](p0i32,p1i32,p2i32);
/******/ },
/******/ "__wbindgen_closure_wrapper61": function(p0i32,p1i32,p2i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_closure_wrapper61"](p0i32,p1i32,p2i32);
/******/ },
/******/ "__wbindgen_closure_wrapper63": function(p0i32,p1i32,p2i32) {
/******/ return installedModules["../pkg/jsonpath_wasm.js"].exports["__wbindgen_closure_wrapper63"](p0i32,p1i32,p2i32);
/******/ }
/******/ }
/******/ };
@ -186,7 +186,7 @@
/******/ promises.push(installedWasmModuleData);
/******/ else {
/******/ var importObject = wasmImportObjects[wasmModuleId]();
/******/ var req = fetch(__webpack_require__.p + "" + {"../pkg/jsonpath_wasm_bg.wasm":"150e86b2ffb44ed0d179"}[wasmModuleId] + ".module.wasm");
/******/ var req = fetch(__webpack_require__.p + "" + {"../pkg/jsonpath_wasm_bg.wasm":"e249debf54ca503ee707"}[wasmModuleId] + ".module.wasm");
/******/ var promise;
/******/ if(importObject instanceof Promise && typeof WebAssembly.compileStreaming === 'function') {
/******/ promise = Promise.all([WebAssembly.compileStreaming(req), importObject]).then(function(items) {

Binary file not shown.

View File

@ -1,40 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JsonPath evaluator - Webassembly via Rust</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body role="document">
<div class="container">
<h3 style="margin-top: 15px;">JsonPath evaluator with Webassembly via Rust</h3>
<!--
<div style="margin-top: -12px; margin-bottom: 10px;">
<span id="version" style="font-size: xx-small"></span>&nbsp;-&nbsp;
<span id="timestamp" style="font-size: xx-small"></span>
</div>
-->
<div class="row">
<div class="col-md-6">
<span class="badge badge-dark" style="margin-bottom: 15px">Evaluator</span>
<div class="form-group">
<textarea id="json-example" class="form-control" style="min-width: 100%" rows="20"></textarea>
</div>
<div class="form-group">
<div class="input-group mb-3">
<input type="text" id="jsonpath-input" class="form-control" placeholder="Enter 입력">
<div class="input-group-append">
<span class="input-group-text" id="read-json">실행</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<span class="badge badge-dark" style="margin-bottom: 15px">Result</span>
<pre class="prettyprint result" id="read-result" style="background-color: transparent; border: none;"></pre>
</div>
</div>
</div>
<script src="./bootstrap.js"></script>
</body>
</html>