harperdb 3.1.1 → 3.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/BinObjects.jsc +0 -0
- package/bin/harperdb.js +1 -1
- package/bin/harperdb.jsc +0 -0
- package/bin/install.jsc +0 -0
- package/bin/register.jsc +0 -0
- package/bin/run.jsc +0 -0
- package/bin/stop.jsc +0 -0
- package/bin/upgrade.jsc +0 -0
- package/bin/utility.jsc +0 -0
- package/bin/version.jsc +0 -0
- package/coverage/lcov.info +14536 -17045
- package/data_layer/CreateAttributeObject.jsc +0 -0
- package/data_layer/CreateTableObject.jsc +0 -0
- package/data_layer/DataLayerObjects.jsc +0 -0
- package/data_layer/DeleteBeforeObject.jsc +0 -0
- package/data_layer/DeleteObject.jsc +0 -0
- package/data_layer/DropAttributeObject.jsc +0 -0
- package/data_layer/InsertObject.jsc +0 -0
- package/data_layer/ReadTransactionLogObject.jsc +0 -0
- package/data_layer/SQLSearch.jsc +0 -0
- package/data_layer/SearchByConditionsObject.jsc +0 -0
- package/data_layer/SearchByHashObject.jsc +0 -0
- package/data_layer/SearchObject.jsc +0 -0
- package/data_layer/SqlSearchObject.jsc +0 -0
- package/data_layer/UpdateObject.jsc +0 -0
- package/data_layer/UpsertObject.jsc +0 -0
- package/data_layer/bulkLoad.jsc +0 -0
- package/data_layer/data_objects/BulkLoadObjects.jsc +0 -0
- package/data_layer/data_objects/UpsertObject.jsc +0 -0
- package/data_layer/delete.jsc +0 -0
- package/data_layer/export.jsc +0 -0
- package/data_layer/harperBridge/BridgeMethods.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/checkForNewAttr.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/convertOperationToTransaction.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/evaluateTableGetAttributes.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/insertUpdateReturnObj.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/insertUpdateValidate.jsc +0 -0
- package/data_layer/harperBridge/harperBridge.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/LMDBBridge.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/DeleteTransactionsBeforeResults.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateAttribute.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateSchema.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateTable.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteRecordsBefore.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteTransactionLogsBefore.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropAttribute.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropSchema.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropTable.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByHash.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByValue.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbReadTransactionLog.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByConditions.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByHash.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByValue.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpdateRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpsertRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBCreateAttributeObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBDeleteTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBInsertTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBUpdateTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBUpsertTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/TableSizeObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/ThreadSearchObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/initializeHashSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/initializePaths.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbCheckForNewAttributes.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbCreateTransactionsEnvironment.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbDropAllAttributes.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbProcessRows.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbThreadSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbWriteTransaction.jsc +0 -0
- package/data_layer/hdbInfoController.jsc +0 -0
- package/data_layer/insert.jsc +0 -0
- package/data_layer/readTransactionLog.jsc +0 -0
- package/data_layer/schema.jsc +0 -0
- package/data_layer/schemaDescribe.jsc +0 -0
- package/data_layer/search.jsc +0 -0
- package/data_layer/update.jsc +0 -0
- package/events/ClusterStatusEmitter.jsc +0 -0
- package/events/SioServerStoppedEvent.jsc +0 -0
- package/events/SocketClusterStatusEmitter.jsc +0 -0
- package/node_modules/@pm2/js-api/node_modules/async/CHANGELOG.md +275 -0
- package/node_modules/@pm2/js-api/node_modules/async/LICENSE +19 -0
- package/node_modules/@pm2/js-api/node_modules/async/README.md +56 -0
- package/node_modules/@pm2/js-api/node_modules/async/all.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/allLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/allSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/any.js +52 -0
- package/node_modules/@pm2/js-api/node_modules/async/anyLimit.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/anySeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/apply.js +68 -0
- package/node_modules/@pm2/js-api/node_modules/async/applyEach.js +51 -0
- package/node_modules/@pm2/js-api/node_modules/async/applyEachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/asyncify.js +110 -0
- package/node_modules/@pm2/js-api/node_modules/async/auto.js +289 -0
- package/node_modules/@pm2/js-api/node_modules/async/autoInject.js +170 -0
- package/node_modules/@pm2/js-api/node_modules/async/bower.json +17 -0
- package/node_modules/@pm2/js-api/node_modules/async/cargo.js +94 -0
- package/node_modules/@pm2/js-api/node_modules/async/compose.js +58 -0
- package/node_modules/@pm2/js-api/node_modules/async/concat.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/concatLimit.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/concatSeries.js +36 -0
- package/node_modules/@pm2/js-api/node_modules/async/constant.js +66 -0
- package/node_modules/@pm2/js-api/node_modules/async/detect.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/detectLimit.js +48 -0
- package/node_modules/@pm2/js-api/node_modules/async/detectSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/dir.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.js +5609 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.min.js +2 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.min.map +1 -0
- package/node_modules/@pm2/js-api/node_modules/async/doDuring.js +66 -0
- package/node_modules/@pm2/js-api/node_modules/async/doUntil.js +39 -0
- package/node_modules/@pm2/js-api/node_modules/async/doWhilst.js +59 -0
- package/node_modules/@pm2/js-api/node_modules/async/during.js +76 -0
- package/node_modules/@pm2/js-api/node_modules/async/each.js +82 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachLimit.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOf.js +111 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOfLimit.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOfSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/ensureAsync.js +73 -0
- package/node_modules/@pm2/js-api/node_modules/async/every.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/everyLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/everySeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/filter.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/filterLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/filterSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/find.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/findLimit.js +48 -0
- package/node_modules/@pm2/js-api/node_modules/async/findSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/foldl.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/foldr.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEach.js +82 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachLimit.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOf.js +111 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOfLimit.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOfSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/forever.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupBy.js +54 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupByLimit.js +71 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupBySeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/index.js +582 -0
- package/node_modules/@pm2/js-api/node_modules/async/inject.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/DoublyLinkedList.js +88 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/applyEach.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/breakLoop.js +9 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/consoleFunc.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/createTester.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doLimit.js +12 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doParallel.js +23 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doParallelLimit.js +23 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/eachOfLimit.js +74 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/filter.js +75 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/findGetResult.js +10 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/getIterator.js +13 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/initialParams.js +21 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/iterator.js +58 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/map.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/notId.js +10 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/once.js +15 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/onlyOnce.js +15 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/parallel.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/queue.js +204 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/reject.js +21 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/setImmediate.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/slice.js +16 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/withoutIndex.js +12 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/wrapAsync.js +25 -0
- package/node_modules/@pm2/js-api/node_modules/async/log.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/map.js +54 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapSeries.js +36 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValues.js +63 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValuesLimit.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValuesSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/memoize.js +101 -0
- package/node_modules/@pm2/js-api/node_modules/async/nextTick.js +51 -0
- package/node_modules/@pm2/js-api/node_modules/async/package.json +110 -0
- package/node_modules/@pm2/js-api/node_modules/async/parallel.js +90 -0
- package/node_modules/@pm2/js-api/node_modules/async/parallelLimit.js +40 -0
- package/node_modules/@pm2/js-api/node_modules/async/priorityQueue.js +98 -0
- package/node_modules/@pm2/js-api/node_modules/async/queue.js +130 -0
- package/node_modules/@pm2/js-api/node_modules/async/race.js +70 -0
- package/node_modules/@pm2/js-api/node_modules/async/reduce.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/reduceRight.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/reflect.js +81 -0
- package/node_modules/@pm2/js-api/node_modules/async/reflectAll.js +105 -0
- package/node_modules/@pm2/js-api/node_modules/async/reject.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/rejectLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/rejectSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/retry.js +156 -0
- package/node_modules/@pm2/js-api/node_modules/async/retryable.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/select.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/selectLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/selectSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/seq.js +91 -0
- package/node_modules/@pm2/js-api/node_modules/async/series.js +85 -0
- package/node_modules/@pm2/js-api/node_modules/async/setImmediate.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/some.js +52 -0
- package/node_modules/@pm2/js-api/node_modules/async/someLimit.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/someSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/sortBy.js +91 -0
- package/node_modules/@pm2/js-api/node_modules/async/timeout.js +89 -0
- package/node_modules/@pm2/js-api/node_modules/async/times.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/timesLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/timesSeries.js +32 -0
- package/node_modules/@pm2/js-api/node_modules/async/transform.js +87 -0
- package/node_modules/@pm2/js-api/node_modules/async/tryEach.js +81 -0
- package/node_modules/@pm2/js-api/node_modules/async/unmemoize.js +25 -0
- package/node_modules/@pm2/js-api/node_modules/async/until.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/waterfall.js +113 -0
- package/node_modules/@pm2/js-api/node_modules/async/whilst.js +72 -0
- package/node_modules/@pm2/js-api/node_modules/async/wrapSync.js +110 -0
- package/node_modules/@pm2/js-api/package.json +3 -1
- package/node_modules/adler-32/package.json +1 -0
- package/node_modules/ajv/package.json +0 -1
- package/node_modules/async/CHANGELOG.md +0 -6
- package/node_modules/async/package.json +12 -15
- package/node_modules/async-limiter/package.json +1 -0
- package/node_modules/{fastify-compress → avvio}/.github/dependabot.yml +5 -1
- package/node_modules/avvio/.github/workflows/ci.yml +34 -11
- package/node_modules/avvio/.taprc +1 -1
- package/node_modules/avvio/README.md +17 -15
- package/node_modules/avvio/boot.js +15 -9
- package/node_modules/avvio/index.d.ts +1 -1
- package/node_modules/avvio/node_modules/debug/LICENSE +10 -9
- package/node_modules/avvio/node_modules/debug/README.md +24 -1
- package/node_modules/avvio/node_modules/debug/package.json +20 -20
- package/node_modules/avvio/node_modules/debug/src/common.js +15 -2
- package/node_modules/avvio/package.json +15 -15
- package/node_modules/avvio/plugin.js +5 -4
- package/node_modules/avvio/test/after-and-ready.test.js +27 -27
- package/node_modules/avvio/test/after-pass-through.test.js +3 -3
- package/node_modules/avvio/test/async-await.test.js +1 -1
- package/node_modules/avvio/test/await-after.test.js +12 -12
- package/node_modules/avvio/test/await-self.test.js +6 -6
- package/node_modules/avvio/test/await-use.test.js +1 -1
- package/node_modules/avvio/test/basic.test.js +14 -14
- package/node_modules/avvio/test/callbacks.test.js +1 -1
- package/node_modules/avvio/test/close.test.js +64 -21
- package/node_modules/avvio/test/esm.mjs +1 -1
- package/node_modules/avvio/test/events-listeners.test.js +1 -0
- package/node_modules/avvio/test/express.test.js +1 -1
- package/node_modules/avvio/test/override.test.js +27 -27
- package/node_modules/avvio/test/plugin-timeout.test.js +18 -18
- package/node_modules/avvio/test/pretty-print.test.js +1 -1
- package/node_modules/avvio/test/to-json.test.js +5 -5
- package/node_modules/avvio/test/types/index.ts +7 -0
- package/node_modules/axios/CHANGELOG.md +0 -23
- package/node_modules/axios/README.md +1 -3
- package/node_modules/axios/dist/axios.js +1 -21
- package/node_modules/axios/dist/axios.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.map +1 -1
- package/node_modules/axios/index.d.ts +2 -3
- package/node_modules/axios/lib/adapters/http.js +12 -28
- package/node_modules/axios/lib/axios.js +0 -3
- package/node_modules/axios/package.json +10 -10
- package/node_modules/big-integer/BigInteger.d.ts +1 -1
- package/node_modules/big-integer/BigInteger.js +2 -2
- package/node_modules/big-integer/BigInteger.min.js +1 -1
- package/node_modules/big-integer/README.md +2 -1
- package/node_modules/big-integer/package.json +15 -15
- package/node_modules/cfb/CHANGELOG.md +27 -0
- package/node_modules/cfb/README.md +0 -2
- package/node_modules/cfb/cfb.js +46 -203
- package/node_modules/cfb/dist/cfb.js +46 -203
- package/node_modules/cfb/dist/cfb.min.js +2 -2
- package/node_modules/cfb/dist/cfb.min.map +1 -1
- package/node_modules/cfb/dist/xlscfb.js +45 -202
- package/node_modules/cfb/package.json +12 -12
- package/node_modules/cfb/xlscfb.flow.js +45 -202
- package/node_modules/clone/README.md +3 -19
- package/node_modules/clone/clone.js +1 -7
- package/node_modules/clone/package.json +12 -11
- package/node_modules/cookie/HISTORY.md +6 -0
- package/node_modules/cookie/README.md +49 -20
- package/node_modules/cookie/index.js +11 -11
- package/node_modules/cookie/package.json +18 -16
- package/node_modules/fast-deep-equal/package.json +2 -1
- package/node_modules/fast-json-stringify/.github/dependabot.yml +4 -0
- package/node_modules/fast-json-stringify/.github/workflows/benchmark.yml +111 -0
- package/node_modules/fast-json-stringify/.github/workflows/ci.yml +32 -16
- package/node_modules/fast-json-stringify/.taprc +0 -1
- package/node_modules/fast-json-stringify/README.md +24 -17
- package/node_modules/fast-json-stringify/bench.js +28 -0
- package/node_modules/fast-json-stringify/example.js +1 -3
- package/node_modules/fast-json-stringify/index.d.ts +1 -0
- package/node_modules/fast-json-stringify/index.js +175 -116
- package/node_modules/fast-json-stringify/package.json +13 -12
- package/node_modules/fast-json-stringify/test/allof.test.js +63 -11
- package/node_modules/fast-json-stringify/test/any.test.js +25 -25
- package/node_modules/fast-json-stringify/test/anyof.test.js +92 -22
- package/node_modules/fast-json-stringify/test/array.test.js +66 -3
- package/node_modules/fast-json-stringify/test/basic.test.js +3 -3
- package/node_modules/fast-json-stringify/test/date.test.js +1 -1
- package/node_modules/fast-json-stringify/test/debug-mode.test.js +4 -4
- package/node_modules/fast-json-stringify/test/defaults.test.js +1 -1
- package/node_modules/fast-json-stringify/test/enum.test.js +37 -0
- package/node_modules/fast-json-stringify/test/inferType.test.js +1 -1
- package/node_modules/fast-json-stringify/test/integer.test.js +44 -1
- package/node_modules/fast-json-stringify/test/nestedObjects.test.js +1 -1
- package/node_modules/fast-json-stringify/test/nullable.test.js +1 -1
- package/node_modules/fast-json-stringify/test/oneof.test.js +145 -17
- package/node_modules/fast-json-stringify/test/recursion.test.js +180 -0
- package/node_modules/fast-json-stringify/test/ref.test.js +54 -7
- package/node_modules/fast-json-stringify/test/required.test.js +10 -10
- package/node_modules/fast-json-stringify/test/requiresAjv.test.js +48 -0
- package/node_modules/fast-json-stringify/test/sanitize.test.js +2 -2
- package/node_modules/fast-json-stringify/test/side-effect.test.js +7 -7
- package/node_modules/fast-json-stringify/test/types/test.ts +8 -0
- package/node_modules/fast-json-stringify/test/typesArray.test.js +26 -26
- package/node_modules/fast-json-stringify/test/webpack.test.js +50 -0
- package/node_modules/fastify/README.md +3 -3
- package/node_modules/fastify/docs/ContentTypeParser.md +0 -21
- package/node_modules/fastify/docs/Ecosystem.md +0 -1
- package/node_modules/fastify/docs/Request.md +1 -1
- package/node_modules/fastify/docs/Server.md +1 -23
- package/node_modules/fastify/docs/Serverless.md +10 -17
- package/node_modules/fastify/docs/Style-Guide.md +2 -2
- package/node_modules/fastify/fastify.js +0 -3
- package/node_modules/fastify/lib/contentTypeParser.js +7 -28
- package/node_modules/fastify/lib/errors.js +1 -1
- package/node_modules/fastify/lib/reply.js +15 -11
- package/node_modules/fastify/lib/route.js +1 -1
- package/node_modules/fastify/node_modules/semver/package.json +10 -10
- package/node_modules/fastify/node_modules/semver/ranges/subset.js +67 -7
- package/node_modules/fastify/package.json +11 -11
- package/node_modules/fastify/test/content-parser.test.js +7 -179
- package/node_modules/fastify/test/custom-parser.test.js +2 -262
- package/node_modules/fastify/test/pretty-print.test.js +0 -28
- package/node_modules/fastify/test/schema-special-usage.test.js +0 -46
- package/node_modules/fastify/test/stream.test.js +0 -90
- package/node_modules/fastify/test/types/instance.test-d.ts +0 -2
- package/node_modules/fastify/test/types/logger.test-d.ts +3 -8
- package/node_modules/fastify/test/types/schema.test-d.ts +1 -41
- package/node_modules/fastify/test/versioned-routes.test.js +18 -61
- package/node_modules/fastify/types/content-type-parser.d.ts +4 -4
- package/node_modules/fastify/types/instance.d.ts +5 -11
- package/node_modules/fastify/types/logger.d.ts +1 -1
- package/node_modules/fastify/types/route.d.ts +11 -14
- package/node_modules/fastify/types/schema.d.ts +4 -4
- package/node_modules/{light-my-request → fastify-compress}/.dependabot/config.yml +1 -1
- package/node_modules/fastify-compress/.github/workflows/ci.yml +1 -10
- package/node_modules/fastify-compress/index.js +0 -12
- package/node_modules/fastify-compress/node_modules/mime-db/HISTORY.md +33 -0
- package/node_modules/fastify-compress/node_modules/mime-db/README.md +0 -2
- package/node_modules/fastify-compress/node_modules/mime-db/db.json +167 -9
- package/node_modules/fastify-compress/node_modules/mime-db/package.json +17 -17
- package/node_modules/fastify-compress/package.json +11 -11
- package/node_modules/fastify-compress/test/test-routes-compress.js +0 -27
- package/node_modules/fastify-cors/README.md +11 -18
- package/node_modules/fastify-cors/index.d.ts +55 -66
- package/node_modules/fastify-cors/index.js +83 -131
- package/node_modules/fastify-cors/package.json +11 -11
- package/node_modules/fastify-cors/test/cors.test.js +3 -250
- package/node_modules/fastify-cors/test/index.test-d.ts +1 -65
- package/node_modules/fastify-cors/test/preflight.test.js +1 -61
- package/node_modules/{fastify-helmet → fastify-error}/.github/dependabot.yml +5 -1
- package/node_modules/fastify-error/.github/workflows/ci.yml +24 -8
- package/node_modules/fastify-error/README.md +8 -5
- package/node_modules/fastify-error/index.d.ts +1 -2
- package/node_modules/fastify-error/index.test-d.ts +1 -1
- package/node_modules/fastify-error/package.json +12 -12
- package/node_modules/fastify-helmet/.dependabot/config.yml +5 -0
- package/node_modules/fastify-helmet/.github/workflows/ci.yml +0 -9
- package/node_modules/fastify-helmet/README.md +2 -2
- package/node_modules/fastify-helmet/benchmarks/express.js +3 -3
- package/node_modules/fastify-helmet/benchmarks/koa.js +2 -2
- package/node_modules/fastify-helmet/index.js +0 -2
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/.github/workflows/ci.yml +18 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/.taprc +5 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/LICENSE +21 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/README.md +144 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/package.json +69 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.d.ts +36 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.js +126 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.test-d.ts +72 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/stackParser.js +11 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/bundlers.test.js +85 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/checkVersion.test.js +73 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/composite.test.js +16 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/esm/esm.mjs +34 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/esm/index.test.js +19 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/mu1tip1e.composite.test.js +16 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/stackParser.test.js +48 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/test.js +307 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/tsconfig.json +8 -0
- package/node_modules/fastify-helmet/node_modules/semver/CHANGELOG.md +111 -0
- package/node_modules/fastify-helmet/node_modules/semver/LICENSE +15 -0
- package/node_modules/fastify-helmet/node_modules/semver/README.md +566 -0
- package/node_modules/fastify-helmet/node_modules/semver/bin/semver.js +173 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/comparator.js +135 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/index.js +5 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/range.js +510 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/semver.js +287 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/clean.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/cmp.js +48 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/coerce.js +51 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare-build.js +7 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare-loose.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare.js +5 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/diff.js +23 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/eq.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/gt.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/gte.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/inc.js +15 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/lt.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/lte.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/major.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/minor.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/neq.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/parse.js +33 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/patch.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/prerelease.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/rcompare.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/rsort.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/satisfies.js +10 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/sort.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/valid.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/index.js +48 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/constants.js +17 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/debug.js +9 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/identifiers.js +23 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/parse-options.js +11 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/re.js +182 -0
- package/node_modules/fastify-helmet/node_modules/semver/package.json +76 -0
- package/node_modules/fastify-helmet/node_modules/semver/preload.js +2 -0
- package/node_modules/fastify-helmet/node_modules/semver/range.bnf +16 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/gtr.js +4 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/intersects.js +7 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/ltr.js +4 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/min-version.js +60 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/outside.js +80 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/simplify.js +44 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/subset.js +222 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/to-comparators.js +8 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/valid.js +11 -0
- package/node_modules/fastify-helmet/package.json +17 -17
- package/node_modules/fastify-helmet/test.js +0 -27
- package/node_modules/fastify-plugin/package.json +0 -1
- package/node_modules/{avvio → fastify-static}/.dependabot/config.yml +0 -0
- package/node_modules/fastify-static/.github/workflows/ci.yml +1 -10
- package/node_modules/fastify-static/README.md +0 -3
- package/node_modules/fastify-static/example/public/index.js +1 -1
- package/node_modules/fastify-static/example/server-compress.js +2 -5
- package/node_modules/fastify-static/example/server-dir-list.js +18 -25
- package/node_modules/fastify-static/example/server.js +1 -4
- package/node_modules/fastify-static/index.d.ts +2 -2
- package/node_modules/fastify-static/index.js +31 -64
- package/node_modules/fastify-static/node_modules/glob/README.md +4 -1
- package/node_modules/fastify-static/node_modules/glob/common.js +4 -8
- package/node_modules/fastify-static/node_modules/glob/glob.js +4 -7
- package/node_modules/fastify-static/node_modules/glob/package.json +18 -12
- package/node_modules/fastify-static/node_modules/glob/sync.js +4 -7
- package/node_modules/fastify-static/package.json +13 -14
- package/node_modules/fastify-static/test/dir-list.test.js +1 -5
- package/node_modules/fastify-static/test/static.test.js +2 -261
- package/node_modules/fastify-static/test/types/index.ts +1 -13
- package/node_modules/find-my-way/.taprc +4 -1
- package/node_modules/find-my-way/README.md +96 -6
- package/node_modules/find-my-way/index.d.ts +6 -5
- package/node_modules/find-my-way/index.js +72 -10
- package/node_modules/find-my-way/lib/constrainer.js +6 -2
- package/node_modules/find-my-way/lib/pretty-print.js +234 -33
- package/node_modules/find-my-way/node.js +25 -28
- package/node_modules/find-my-way/package.json +11 -11
- package/node_modules/find-my-way/test/constraint.custom-versioning.test.js +2 -2
- package/node_modules/find-my-way/test/constraint.custom.test.js +72 -10
- package/node_modules/find-my-way/test/constraint.default-versioning.test.js +24 -1
- package/node_modules/find-my-way/test/constraint.host.test.js +7 -7
- package/node_modules/find-my-way/test/constraints.test.js +19 -19
- package/node_modules/find-my-way/test/errors.test.js +25 -25
- package/node_modules/find-my-way/test/fastify-issue-3129.test.js +35 -0
- package/node_modules/find-my-way/test/full-url.test.js +8 -8
- package/node_modules/find-my-way/test/host-storage.test.js +15 -15
- package/node_modules/find-my-way/test/http2/constraint.host.test.js +45 -0
- package/node_modules/find-my-way/test/issue-104.test.js +41 -18
- package/node_modules/find-my-way/test/issue-110.test.js +1 -1
- package/node_modules/find-my-way/test/issue-132.test.js +9 -9
- package/node_modules/find-my-way/test/issue-145.test.js +6 -6
- package/node_modules/find-my-way/test/issue-151.test.js +2 -2
- package/node_modules/find-my-way/test/issue-17.test.js +92 -12
- package/node_modules/find-my-way/test/issue-175.test.js +51 -1
- package/node_modules/find-my-way/test/issue-182.test.js +19 -0
- package/node_modules/find-my-way/test/issue-28.test.js +21 -21
- package/node_modules/find-my-way/test/issue-46.test.js +13 -13
- package/node_modules/find-my-way/test/issue-49.test.js +4 -4
- package/node_modules/find-my-way/test/issue-59.test.js +1 -1
- package/node_modules/find-my-way/test/issue-63.test.js +1 -1
- package/node_modules/find-my-way/test/issue-67.test.js +1 -1
- package/node_modules/find-my-way/test/max-param-length.test.js +5 -5
- package/node_modules/find-my-way/test/methods.test.js +53 -53
- package/node_modules/find-my-way/test/on-bad-url.test.js +4 -4
- package/node_modules/find-my-way/test/optional-params.test.js +145 -0
- package/node_modules/find-my-way/test/path-params-match.test.js +12 -12
- package/node_modules/find-my-way/test/pretty-print.test.js +364 -9
- package/node_modules/find-my-way/test/regex.test.js +5 -5
- package/node_modules/find-my-way/test/routes-registered.test.js +4 -4
- package/node_modules/find-my-way/test/server.test.js +23 -23
- package/node_modules/find-my-way/test/store.test.js +4 -4
- package/node_modules/find-my-way/test/types/router.test-d.ts +62 -0
- package/node_modules/follow-redirects/debug.js +2 -1
- package/node_modules/follow-redirects/index.js +111 -42
- package/node_modules/follow-redirects/package.json +10 -10
- package/node_modules/helmet/CHANGELOG.md +27 -3
- package/node_modules/helmet/README.md +130 -27
- package/node_modules/helmet/dist/index.d.ts +21 -13
- package/node_modules/helmet/dist/index.js +111 -52
- package/node_modules/helmet/dist/middlewares/content-security-policy/index.d.ts +2 -1
- package/node_modules/helmet/dist/middlewares/content-security-policy/index.js +28 -11
- package/node_modules/helmet/dist/middlewares/cross-origin-embedder-policy/index.d.ts +3 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-embedder-policy/index.js +10 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-opener-policy/index.d.ts +6 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-opener-policy/index.js +19 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-resource-policy/index.d.ts +6 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-resource-policy/index.js +19 -0
- package/node_modules/helmet/package.json +19 -18
- package/node_modules/ieee754/package.json +1 -2
- package/node_modules/inherits/package.json +0 -1
- package/node_modules/ipaddr.js/Changes.md +20 -0
- package/node_modules/ipaddr.js/ipaddr.min.js +1 -1
- package/node_modules/ipaddr.js/lib/ipaddr.js +66 -0
- package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +1 -0
- package/node_modules/ipaddr.js/package.json +10 -10
- package/node_modules/{fastify-static → light-my-request}/.github/dependabot.yml +5 -1
- package/node_modules/light-my-request/.github/workflows/ci.yml +38 -12
- package/node_modules/light-my-request/README.md +5 -3
- package/node_modules/light-my-request/index.d.ts +6 -3
- package/node_modules/light-my-request/lib/parseURL.js +7 -4
- package/node_modules/light-my-request/lib/request.js +16 -6
- package/node_modules/light-my-request/lib/response.js +24 -11
- package/node_modules/light-my-request/node_modules/ajv/.runkit_example.js +23 -0
- package/node_modules/{@pm2/pm2-version-check/node_modules/ms/license.md → light-my-request/node_modules/ajv/LICENSE} +2 -1
- package/node_modules/light-my-request/node_modules/ajv/README.md +193 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.js +55 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.js +49 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.d.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.js +44 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.js +155 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.js +123 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.js +242 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.js +218 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.js +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.js +178 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.js +202 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.js +510 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.d.ts +173 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.js +617 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.d.ts +45 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.js +66 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/data.json +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.js +184 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.js +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.d.ts +124 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.d.ts +169 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.js +100 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.js +146 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.js +48 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.js +47 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/2019.ts +78 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/2020.ts +72 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/ajv.ts +67 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/code.ts +168 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/index.ts +832 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/index.ts +324 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/serialize.ts +260 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/names.ts +27 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/util.ts +213 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/dataType.ts +229 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/index.ts +573 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/core.ts +887 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/jtd.ts +129 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/data.json +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/parseJson.ts +176 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/index.ts +240 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/json-schema.ts +186 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/jtd-schema.ts +263 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/discriminator/index.ts +110 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/properties.ts +177 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/values.ts +55 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/enum.ts +52 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/package.json +161 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/README.md +95 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/index.js +93 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/package.json +73 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/light-my-request/package.json +26 -19
- package/node_modules/light-my-request/test/benchmark.js +67 -0
- package/node_modules/light-my-request/test/index.test-d.ts +6 -4
- package/node_modules/light-my-request/test/test.js +103 -14
- package/node_modules/lmdb-store/build/Makefile +1 -1
- package/node_modules/lodash/package.json +4 -1
- package/node_modules/lru-cache/package.json +1 -0
- package/node_modules/minipass/README.md +7 -7
- package/node_modules/minipass/index.js +18 -3
- package/node_modules/minipass/package.json +11 -11
- package/node_modules/msgpackr-extract/build/Makefile +1 -1
- package/node_modules/node-lmdb/build/Makefile +1 -1
- package/node_modules/{@pm2 → pm2/node_modules/@pm2}/pm2-version-check/README.md +0 -0
- package/node_modules/{@pm2 → pm2/node_modules/@pm2}/pm2-version-check/index.js +0 -0
- package/node_modules/{@pm2 → pm2/node_modules/@pm2}/pm2-version-check/package.json +1 -1
- package/node_modules/pm2/node_modules/debug/package.json +2 -1
- package/node_modules/{socketcluster-client/node_modules/clone → pm2-sysmonit/node_modules/systeminformation}/LICENSE +7 -5
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/README.md +1075 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/audio.js +219 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/battery.js +309 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/bluetooth.js +183 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/cli.js +31 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/cpu.js +1681 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/docker.js +764 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/dockerSocket.js +327 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/filesystem.js +1270 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/graphics.js +1062 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/index.d.ts +988 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/index.js +513 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/internet.js +240 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/memory.js +547 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/network.js +1713 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/osinfo.js +1161 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/printer.js +212 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/processes.js +1257 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/system.js +829 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/usb.js +305 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/users.js +441 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/util.js +1276 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/virtualbox.js +107 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/wifi.js +747 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/package.json +135 -0
- package/node_modules/printj/package.json +1 -0
- package/node_modules/pumpify/node_modules/duplexify/.travis.yml +3 -0
- package/node_modules/pumpify/node_modules/duplexify/index.js +1 -1
- package/node_modules/pumpify/node_modules/duplexify/package.json +10 -10
- package/node_modules/pumpify/node_modules/duplexify/test.js +1 -0
- package/node_modules/request/node_modules/mime-db/HISTORY.md +0 -6
- package/node_modules/request/node_modules/mime-db/db.json +1 -39
- package/node_modules/request/node_modules/mime-db/package.json +13 -13
- package/node_modules/request/node_modules/mime-types/HISTORY.md +0 -7
- package/node_modules/request/node_modules/mime-types/package.json +13 -13
- package/node_modules/require-from-string/index.js +34 -0
- package/node_modules/require-from-string/license +21 -0
- package/node_modules/require-from-string/package.json +61 -0
- package/node_modules/require-from-string/readme.md +56 -0
- package/node_modules/sc-errors/package.json +2 -1
- package/node_modules/secure-json-parse/.github/workflows/ci.yml +16 -1
- package/node_modules/secure-json-parse/index.d.ts +60 -0
- package/node_modules/secure-json-parse/index.test-d.ts +30 -0
- package/node_modules/secure-json-parse/package.json +16 -13
- package/node_modules/send/HISTORY.md +10 -0
- package/node_modules/send/README.md +4 -6
- package/node_modules/send/index.js +7 -3
- package/node_modules/send/node_modules/http-errors/HISTORY.md +11 -0
- package/node_modules/send/node_modules/http-errors/README.md +12 -6
- package/node_modules/send/node_modules/http-errors/index.js +35 -2
- package/node_modules/send/node_modules/http-errors/package.json +24 -24
- package/node_modules/send/node_modules/ms/index.js +3 -3
- package/node_modules/send/node_modules/ms/license.md +1 -1
- package/node_modules/send/node_modules/ms/package.json +16 -15
- package/node_modules/send/node_modules/ms/readme.md +1 -2
- package/node_modules/send/node_modules/setprototypeof/README.md +1 -1
- package/node_modules/send/node_modules/setprototypeof/index.js +1 -1
- package/node_modules/send/node_modules/setprototypeof/package.json +14 -12
- package/node_modules/send/package.json +26 -26
- package/node_modules/socketcluster-client/bower.json +1 -1
- package/node_modules/socketcluster-client/index.js +1 -1
- package/node_modules/socketcluster-client/node_modules/buffer/AUTHORS.md +8 -0
- package/node_modules/socketcluster-client/node_modules/buffer/README.md +0 -6
- package/node_modules/socketcluster-client/node_modules/buffer/index.d.ts +1 -1
- package/node_modules/socketcluster-client/node_modules/buffer/index.js +49 -37
- package/node_modules/socketcluster-client/node_modules/buffer/package.json +36 -22
- package/node_modules/socketcluster-client/node_modules/ieee754/LICENSE +11 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/README.md +51 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/index.d.ts +10 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/index.js +85 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/package.json +87 -0
- package/node_modules/socketcluster-client/node_modules/ws/LICENSE +21 -0
- package/node_modules/socketcluster-client/node_modules/ws/README.md +389 -0
- package/node_modules/socketcluster-client/node_modules/ws/index.js +9 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/.DS_Store +0 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/buffer-util.js +72 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/constants.js +10 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/event-target.js +170 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/extension.js +211 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/permessage-deflate.js +516 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/receiver.js +513 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/sender.js +401 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/validation.js +29 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/websocket-server.js +350 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/websocket.js +821 -0
- package/node_modules/socketcluster-client/node_modules/ws/package.json +81 -0
- package/node_modules/socketcluster-client/package.json +17 -18
- package/node_modules/socketcluster-client/socketcluster.js +12 -40
- package/node_modules/socketcluster-client/socketcluster.min.js +2 -2
- package/node_modules/string_decoder/package.json +0 -1
- package/node_modules/systeminformation/CHANGELOG.md +3 -22
- package/node_modules/systeminformation/README.md +1 -4
- package/node_modules/systeminformation/lib/battery.js +26 -104
- package/node_modules/systeminformation/lib/cpu.js +10 -13
- package/node_modules/systeminformation/lib/docker.js +3 -3
- package/node_modules/systeminformation/lib/filesystem.js +59 -86
- package/node_modules/systeminformation/lib/graphics.js +22 -91
- package/node_modules/systeminformation/lib/index.d.ts +11 -48
- package/node_modules/systeminformation/lib/memory.js +1 -1
- package/node_modules/systeminformation/lib/network.js +7 -17
- package/node_modules/systeminformation/lib/osinfo.js +7 -10
- package/node_modules/systeminformation/lib/processes.js +23 -35
- package/node_modules/systeminformation/lib/system.js +5 -5
- package/node_modules/systeminformation/lib/util.js +1 -41
- package/node_modules/systeminformation/package.json +11 -12
- package/node_modules/toidentifier/HISTORY.md +9 -0
- package/node_modules/toidentifier/README.md +3 -3
- package/node_modules/toidentifier/index.js +2 -0
- package/node_modules/toidentifier/package.json +25 -21
- package/node_modules/uri-js/package.json +2 -1
- package/node_modules/util-deprecate/package.json +0 -1
- package/node_modules/vizion/node_modules/async/CHANGELOG.md +275 -0
- package/node_modules/vizion/node_modules/async/LICENSE +19 -0
- package/node_modules/vizion/node_modules/async/README.md +56 -0
- package/node_modules/vizion/node_modules/async/all.js +50 -0
- package/node_modules/vizion/node_modules/async/allLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/allSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/any.js +52 -0
- package/node_modules/vizion/node_modules/async/anyLimit.js +43 -0
- package/node_modules/vizion/node_modules/async/anySeries.js +38 -0
- package/node_modules/vizion/node_modules/async/apply.js +68 -0
- package/node_modules/vizion/node_modules/async/applyEach.js +51 -0
- package/node_modules/vizion/node_modules/async/applyEachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/asyncify.js +110 -0
- package/node_modules/vizion/node_modules/async/auto.js +289 -0
- package/node_modules/vizion/node_modules/async/autoInject.js +170 -0
- package/node_modules/vizion/node_modules/async/bower.json +17 -0
- package/node_modules/vizion/node_modules/async/cargo.js +94 -0
- package/node_modules/vizion/node_modules/async/compose.js +58 -0
- package/node_modules/vizion/node_modules/async/concat.js +43 -0
- package/node_modules/vizion/node_modules/async/concatLimit.js +65 -0
- package/node_modules/vizion/node_modules/async/concatSeries.js +36 -0
- package/node_modules/vizion/node_modules/async/constant.js +66 -0
- package/node_modules/vizion/node_modules/async/detect.js +61 -0
- package/node_modules/vizion/node_modules/async/detectLimit.js +48 -0
- package/node_modules/vizion/node_modules/async/detectSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/dir.js +43 -0
- package/node_modules/vizion/node_modules/async/dist/async.js +5609 -0
- package/node_modules/vizion/node_modules/async/dist/async.min.js +2 -0
- package/node_modules/vizion/node_modules/async/dist/async.min.map +1 -0
- package/node_modules/vizion/node_modules/async/doDuring.js +66 -0
- package/node_modules/vizion/node_modules/async/doUntil.js +39 -0
- package/node_modules/vizion/node_modules/async/doWhilst.js +59 -0
- package/node_modules/vizion/node_modules/async/during.js +76 -0
- package/node_modules/vizion/node_modules/async/each.js +82 -0
- package/node_modules/vizion/node_modules/async/eachLimit.js +45 -0
- package/node_modules/vizion/node_modules/async/eachOf.js +111 -0
- package/node_modules/vizion/node_modules/async/eachOfLimit.js +41 -0
- package/node_modules/vizion/node_modules/async/eachOfSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/eachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/ensureAsync.js +73 -0
- package/node_modules/vizion/node_modules/async/every.js +50 -0
- package/node_modules/vizion/node_modules/async/everyLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/everySeries.js +37 -0
- package/node_modules/vizion/node_modules/async/filter.js +45 -0
- package/node_modules/vizion/node_modules/async/filterLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/filterSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/find.js +61 -0
- package/node_modules/vizion/node_modules/async/findLimit.js +48 -0
- package/node_modules/vizion/node_modules/async/findSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/foldl.js +78 -0
- package/node_modules/vizion/node_modules/async/foldr.js +44 -0
- package/node_modules/vizion/node_modules/async/forEach.js +82 -0
- package/node_modules/vizion/node_modules/async/forEachLimit.js +45 -0
- package/node_modules/vizion/node_modules/async/forEachOf.js +111 -0
- package/node_modules/vizion/node_modules/async/forEachOfLimit.js +41 -0
- package/node_modules/vizion/node_modules/async/forEachOfSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/forEachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/forever.js +65 -0
- package/node_modules/vizion/node_modules/async/groupBy.js +54 -0
- package/node_modules/vizion/node_modules/async/groupByLimit.js +71 -0
- package/node_modules/vizion/node_modules/async/groupBySeries.js +37 -0
- package/node_modules/vizion/node_modules/async/index.js +582 -0
- package/node_modules/vizion/node_modules/async/inject.js +78 -0
- package/node_modules/vizion/node_modules/async/internal/DoublyLinkedList.js +88 -0
- package/node_modules/vizion/node_modules/async/internal/applyEach.js +38 -0
- package/node_modules/vizion/node_modules/async/internal/breakLoop.js +9 -0
- package/node_modules/vizion/node_modules/async/internal/consoleFunc.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/createTester.js +44 -0
- package/node_modules/vizion/node_modules/async/internal/doLimit.js +12 -0
- package/node_modules/vizion/node_modules/async/internal/doParallel.js +23 -0
- package/node_modules/vizion/node_modules/async/internal/doParallelLimit.js +23 -0
- package/node_modules/vizion/node_modules/async/internal/eachOfLimit.js +74 -0
- package/node_modules/vizion/node_modules/async/internal/filter.js +75 -0
- package/node_modules/vizion/node_modules/async/internal/findGetResult.js +10 -0
- package/node_modules/vizion/node_modules/async/internal/getIterator.js +13 -0
- package/node_modules/vizion/node_modules/async/internal/initialParams.js +21 -0
- package/node_modules/vizion/node_modules/async/internal/iterator.js +58 -0
- package/node_modules/vizion/node_modules/async/internal/map.js +35 -0
- package/node_modules/vizion/node_modules/async/internal/notId.js +10 -0
- package/node_modules/vizion/node_modules/async/internal/once.js +15 -0
- package/node_modules/vizion/node_modules/async/internal/onlyOnce.js +15 -0
- package/node_modules/vizion/node_modules/async/internal/parallel.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/queue.js +204 -0
- package/node_modules/vizion/node_modules/async/internal/reject.js +21 -0
- package/node_modules/vizion/node_modules/async/internal/setImmediate.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/slice.js +16 -0
- package/node_modules/vizion/node_modules/async/internal/withoutIndex.js +12 -0
- package/node_modules/vizion/node_modules/async/internal/wrapAsync.js +25 -0
- package/node_modules/vizion/node_modules/async/log.js +41 -0
- package/node_modules/vizion/node_modules/async/map.js +54 -0
- package/node_modules/vizion/node_modules/async/mapLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/mapSeries.js +36 -0
- package/node_modules/vizion/node_modules/async/mapValues.js +63 -0
- package/node_modules/vizion/node_modules/async/mapValuesLimit.js +61 -0
- package/node_modules/vizion/node_modules/async/mapValuesSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/memoize.js +101 -0
- package/node_modules/vizion/node_modules/async/nextTick.js +51 -0
- package/node_modules/vizion/node_modules/async/package.json +110 -0
- package/node_modules/vizion/node_modules/async/parallel.js +90 -0
- package/node_modules/vizion/node_modules/async/parallelLimit.js +40 -0
- package/node_modules/vizion/node_modules/async/priorityQueue.js +98 -0
- package/node_modules/vizion/node_modules/async/queue.js +130 -0
- package/node_modules/vizion/node_modules/async/race.js +70 -0
- package/node_modules/vizion/node_modules/async/reduce.js +78 -0
- package/node_modules/vizion/node_modules/async/reduceRight.js +44 -0
- package/node_modules/vizion/node_modules/async/reflect.js +81 -0
- package/node_modules/vizion/node_modules/async/reflectAll.js +105 -0
- package/node_modules/vizion/node_modules/async/reject.js +45 -0
- package/node_modules/vizion/node_modules/async/rejectLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/rejectSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/retry.js +156 -0
- package/node_modules/vizion/node_modules/async/retryable.js +65 -0
- package/node_modules/vizion/node_modules/async/select.js +45 -0
- package/node_modules/vizion/node_modules/async/selectLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/selectSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/seq.js +91 -0
- package/node_modules/vizion/node_modules/async/series.js +85 -0
- package/node_modules/vizion/node_modules/async/setImmediate.js +45 -0
- package/node_modules/vizion/node_modules/async/some.js +52 -0
- package/node_modules/vizion/node_modules/async/someLimit.js +43 -0
- package/node_modules/vizion/node_modules/async/someSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/sortBy.js +91 -0
- package/node_modules/vizion/node_modules/async/timeout.js +89 -0
- package/node_modules/vizion/node_modules/async/times.js +50 -0
- package/node_modules/vizion/node_modules/async/timesLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/timesSeries.js +32 -0
- package/node_modules/vizion/node_modules/async/transform.js +87 -0
- package/node_modules/vizion/node_modules/async/tryEach.js +81 -0
- package/node_modules/vizion/node_modules/async/unmemoize.js +25 -0
- package/node_modules/vizion/node_modules/async/until.js +41 -0
- package/node_modules/vizion/node_modules/async/waterfall.js +113 -0
- package/node_modules/vizion/node_modules/async/whilst.js +72 -0
- package/node_modules/vizion/node_modules/async/wrapSync.js +110 -0
- package/node_modules/vizion/package.json +3 -1
- package/node_modules/ws/package.json +0 -1
- package/package.json +62 -62
- package/security/JWTObjects.jsc +0 -0
- package/security/auth.jsc +0 -0
- package/security/cryptoHash.jsc +0 -0
- package/security/data_objects/PermissionAttributeResponseObject.jsc +0 -0
- package/security/data_objects/PermissionResponseObject.jsc +0 -0
- package/security/data_objects/PermissionTableResponseObject.jsc +0 -0
- package/security/permissionsTranslator.jsc +0 -0
- package/security/role.jsc +0 -0
- package/security/tokenAuthentication.jsc +0 -0
- package/security/user.jsc +0 -0
- package/server/ClusteringOriginObject.jsc +0 -0
- package/server/JobObject.jsc +0 -0
- package/server/clustering/ClusterStatusObject.jsc +0 -0
- package/server/clustering/NodeObject.jsc +0 -0
- package/server/clustering/clusterUtilities.jsc +0 -0
- package/server/configuration.jsc +0 -0
- package/server/customFunctions/customFunctionsServer.jsc +0 -0
- package/server/customFunctions/helpers/getCORSOptions.jsc +0 -0
- package/server/customFunctions/helpers/getHeaderTimeoutConfig.jsc +0 -0
- package/server/customFunctions/helpers/getServerOptions.jsc +0 -0
- package/server/customFunctions/operations.jsc +0 -0
- package/server/customFunctions/operationsValidation.jsc +0 -0
- package/server/customFunctions/plugins/hdbCore.js +11 -7
- package/server/harperdb/hdbServer.jsc +0 -0
- package/server/ipc/IPCClient.jsc +0 -0
- package/server/ipc/hdbIpcServer.jsc +0 -0
- package/server/ipc/serverHandlers.jsc +0 -0
- package/server/ipc/utility/IPCEventObject.jsc +0 -0
- package/server/ipc/utility/ipcUtils.jsc +0 -0
- package/server/jobRunner.jsc +0 -0
- package/server/jobThread.jsc +0 -0
- package/server/jobs.jsc +0 -0
- package/server/serverHelpers/OperationFunctionObject.jsc +0 -0
- package/server/serverHelpers/requestTimePlugin.jsc +0 -0
- package/server/serverHelpers/serverHandlers.jsc +0 -0
- package/server/serverHelpers/serverUtilities.jsc +0 -0
- package/server/socketcluster/Server.jsc +0 -0
- package/server/socketcluster/broker.jsc +0 -0
- package/server/socketcluster/connector/HDBSocketConnector.jsc +0 -0
- package/server/socketcluster/connector/InterNodeSocketConnector.jsc +0 -0
- package/server/socketcluster/connector/SocketConnector.jsc +0 -0
- package/server/socketcluster/connector/spawnSCConnection.jsc +0 -0
- package/server/socketcluster/decisionMatrix/CoreDecisionMatrix.jsc +0 -0
- package/server/socketcluster/decisionMatrix/DecisionMatrixIF.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/AssignToHdbChildWorkerRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CallRoomMsgHandlerRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CleanDataObjectRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CommandCollection.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/DummyRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/RulesIF.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/StripHdbHeaderRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/TestRule.jsc +0 -0
- package/server/socketcluster/handlers/NodeConnectionsHandler.jsc +0 -0
- package/server/socketcluster/handlers/SCServer.jsc +0 -0
- package/server/socketcluster/handlers/ServerSocket.jsc +0 -0
- package/server/socketcluster/interNodeConnectionLauncher.jsc +0 -0
- package/server/socketcluster/messageQueue/MessageQueueIF.jsc +0 -0
- package/server/socketcluster/middleware/AuthMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/ConnectionNameCheckMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/GenericMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/MessagePrepMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/MiddlewareFactory.jsc +0 -0
- package/server/socketcluster/middleware/MiddlewareIF.jsc +0 -0
- package/server/socketcluster/middleware/OriginatorCheckMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/RequestDataValidMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/StampOriginatorMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/StampRequestMiddleware.jsc +0 -0
- package/server/socketcluster/observer/EventableIF.jsc +0 -0
- package/server/socketcluster/room/AddUserRoom.jsc +0 -0
- package/server/socketcluster/room/AlterUserRoom.jsc +0 -0
- package/server/socketcluster/room/CoreRoom.jsc +0 -0
- package/server/socketcluster/room/CreateAttributeRoom.jsc +0 -0
- package/server/socketcluster/room/CreateSchemaRoom.jsc +0 -0
- package/server/socketcluster/room/CreateTableRoom.jsc +0 -0
- package/server/socketcluster/room/DropUserRoom.jsc +0 -0
- package/server/socketcluster/room/HDBNodeRoom.jsc +0 -0
- package/server/socketcluster/room/RoomIF.jsc +0 -0
- package/server/socketcluster/room/RoomMessageObjects.jsc +0 -0
- package/server/socketcluster/room/UsersRoom.jsc +0 -0
- package/server/socketcluster/room/WatchHDBWorkersRoom.jsc +0 -0
- package/server/socketcluster/room/WorkerRoom.jsc +0 -0
- package/server/socketcluster/room/roomFactory.jsc +0 -0
- package/server/socketcluster/socketClusterObjects.jsc +0 -0
- package/server/socketcluster/types.jsc +0 -0
- package/server/socketcluster/util/clusterData.jsc +0 -0
- package/server/socketcluster/util/socketClusterUtils.jsc +0 -0
- package/server/socketcluster/worker/ClusterWorker.jsc +0 -0
- package/server/socketcluster/worker/WorkerIF.jsc +0 -0
- package/server/socketcluster/worker/WorkerObjects.jsc +0 -0
- package/server/transactToClusteringUtilities.jsc +0 -0
- package/sqlTranslator/SelectValidator.jsc +0 -0
- package/sqlTranslator/alasqlFunctionImporter.jsc +0 -0
- package/sqlTranslator/conditionPatterns.jsc +0 -0
- package/sqlTranslator/deleteTranslator.jsc +0 -0
- package/sqlTranslator/index.jsc +0 -0
- package/sqlTranslator/sql_statement_bucket.jsc +0 -0
- package/upgrade/EnvironmentVariable.jsc +0 -0
- package/upgrade/UpgradeDirective.jsc +0 -0
- package/upgrade/UpgradeObjects.jsc +0 -0
- package/upgrade/directives/3-0-0.jsc +0 -0
- package/upgrade/directives/3-1-0.jsc +0 -0
- package/upgrade/directives/directivesController.jsc +0 -0
- package/upgrade/directives/upgrade_scripts/3_0_0_reindex_script.jsc +0 -0
- package/upgrade/directivesManager.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/DBIDefinition.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/OpenDBIObject.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/OpenEnvironmentObject.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/commonErrors.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/commonUtility.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/environmentUtility.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/terms.jsc +0 -0
- package/upgrade/upgradePrompt.jsc +0 -0
- package/upgrade/upgradeUtilities.jsc +0 -0
- package/utility/AWS/AWSConnector.jsc +0 -0
- package/utility/OperationFunctionCaller.jsc +0 -0
- package/utility/common_utils.jsc +0 -0
- package/utility/environment/SystemInformationObject.jsc +0 -0
- package/utility/environment/SystemInformationOperation.jsc +0 -0
- package/utility/environment/environmentManager.jsc +0 -0
- package/utility/environment/systemInformation.jsc +0 -0
- package/utility/errors/commonErrors.jsc +0 -0
- package/utility/errors/hdbError.jsc +0 -0
- package/utility/functions/date/dateFunctions.jsc +0 -0
- package/utility/functions/geo.jsc +0 -0
- package/utility/functions/math/avg.jsc +0 -0
- package/utility/functions/math/count.jsc +0 -0
- package/utility/functions/sql/alaSQLExtension.jsc +0 -0
- package/utility/functions/string/compare.jsc +0 -0
- package/utility/globalSchema.jsc +0 -0
- package/utility/hdbTerms.jsc +0 -0
- package/utility/install/ascii_logo.txt +21 -36
- package/utility/install/checkJWTTokensExist.jsc +0 -0
- package/utility/install/installer.jsc +0 -0
- package/utility/install_user_permission.jsc +0 -0
- package/utility/lmdb/DBIDefinition.jsc +0 -0
- package/utility/lmdb/DeleteRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/InsertRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/OpenDBIObject.jsc +0 -0
- package/utility/lmdb/OpenEnvironmentObject.jsc +0 -0
- package/utility/lmdb/UpdateRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/UpsertRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/cleanLMDBMap.jsc +0 -0
- package/utility/lmdb/commonUtility.jsc +0 -0
- package/utility/lmdb/deleteUtility.jsc +0 -0
- package/utility/lmdb/environmentUtility.jsc +0 -0
- package/utility/lmdb/searchCursorFunctions.jsc +0 -0
- package/utility/lmdb/searchUtility.jsc +0 -0
- package/utility/lmdb/terms.jsc +0 -0
- package/utility/lmdb/writeUtility.jsc +0 -0
- package/utility/logging/harper_logger.jsc +0 -0
- package/utility/mount_hdb.jsc +0 -0
- package/utility/operation_authorization.jsc +0 -0
- package/utility/password.jsc +0 -0
- package/utility/pm2/servicesConfig.jsc +0 -0
- package/utility/pm2/utilityFunctions.jsc +0 -0
- package/utility/psList.jsc +0 -0
- package/utility/registration/hdb_license.jsc +0 -0
- package/utility/registration/licenseObjects.jsc +0 -0
- package/utility/registration/registrationHandler.jsc +0 -0
- package/utility/scripts/restartHdb.jsc +0 -0
- package/utility/signalling.jsc +0 -0
- package/utility/system_info.jsc +0 -0
- package/validation/bulkDeleteValidator.jsc +0 -0
- package/validation/check_permissions.jsc +0 -0
- package/validation/clustering/configureValidator.jsc +0 -0
- package/validation/common_validators.jsc +0 -0
- package/validation/conditionalDeleteValidator.jsc +0 -0
- package/validation/deleteValidator.jsc +0 -0
- package/validation/fileLoadValidator.jsc +0 -0
- package/validation/insertValidator.jsc +0 -0
- package/validation/nodeSubscriptionValidator.jsc +0 -0
- package/validation/nodeValidator.jsc +0 -0
- package/validation/readLogValidator.jsc +0 -0
- package/validation/registration/license_key_object.jsc +0 -0
- package/validation/role_validation.jsc +0 -0
- package/validation/schemaMetadataValidator.jsc +0 -0
- package/validation/schema_validator.jsc +0 -0
- package/validation/searchValidator.jsc +0 -0
- package/validation/user_validation.jsc +0 -0
- package/validation/validationWrapper.jsc +0 -0
- package/data_layer/ExplodedObject.jsc +0 -0
- package/data_layer/WriteProcessorObject.jsc +0 -0
- package/data_layer/dataWriteProcessor.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/FileSystemBridge.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsCreateAttribute.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsCreateRecords.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsCreateSchema.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsCreateTable.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDeleteRecords.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDeleteRecordsBefore.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDropAttribute.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDropSchema.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDropTable.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsGetDataByHash.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsGetDataByValue.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsSearchByHash.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsSearchByValue.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsUpdateRecords.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/buildFolderPath.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/checkForNewAttr.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/deleteAttrStructure.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/getAllAttrHashValues.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/getAttributeFileValues.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/getBasePath.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/moveFolderToTrash.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/processData.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/processRows.jsc +0 -0
- package/lib/fileSystem/fileSearch.jsc +0 -0
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/LICENSE +0 -19
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/README.md +0 -455
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/package.json +0 -104
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/src/browser.js +0 -269
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/src/common.js +0 -261
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/src/index.js +0 -10
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/src/node.js +0 -263
- package/node_modules/@pm2/pm2-version-check/node_modules/ms/index.js +0 -162
- package/node_modules/@pm2/pm2-version-check/node_modules/ms/package.json +0 -72
- package/node_modules/@pm2/pm2-version-check/node_modules/ms/readme.md +0 -60
- package/node_modules/axios/lib/helpers/isAxiosError.js +0 -11
- package/node_modules/cfb/node_modules/adler-32/LICENSE +0 -201
- package/node_modules/cfb/node_modules/adler-32/README.md +0 -140
- package/node_modules/cfb/node_modules/adler-32/adler32.js +0 -92
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/LICENSE +0 -201
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/README.md +0 -1062
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/bin/printj.njs +0 -66
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/dist/LICENSE +0 -201
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/dist/printj.js +0 -597
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/dist/printj.min.js +0 -2
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/dist/printj.min.map +0 -1
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/package.json +0 -101
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/printj.js +0 -597
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/printj.mjs +0 -574
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/types/index.d.ts +0 -11
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/types/tsconfig.json +0 -14
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/types/tslint.json +0 -13
- package/node_modules/cfb/node_modules/adler-32/package.json +0 -84
- package/node_modules/cfb/node_modules/adler-32/types/index.d.ts +0 -14
- package/node_modules/cfb/node_modules/adler-32/types/tsconfig.json +0 -15
- package/node_modules/cfb/node_modules/adler-32/types/tslint.json +0 -14
- package/node_modules/cfb/node_modules/printj/LICENSE +0 -201
- package/node_modules/cfb/node_modules/printj/README.md +0 -1095
- package/node_modules/cfb/node_modules/printj/bin/printj.njs +0 -66
- package/node_modules/cfb/node_modules/printj/dist/LICENSE +0 -201
- package/node_modules/cfb/node_modules/printj/dist/printj.js +0 -602
- package/node_modules/cfb/node_modules/printj/dist/printj.min.js +0 -2
- package/node_modules/cfb/node_modules/printj/dist/printj.min.map +0 -1
- package/node_modules/cfb/node_modules/printj/package.json +0 -105
- package/node_modules/cfb/node_modules/printj/printj.js +0 -602
- package/node_modules/cfb/node_modules/printj/printj.mjs +0 -579
- package/node_modules/cfb/node_modules/printj/shim.js +0 -276
- package/node_modules/cfb/node_modules/printj/types/index.d.ts +0 -11
- package/node_modules/cfb/node_modules/printj/types/tsconfig.json +0 -14
- package/node_modules/cfb/node_modules/printj/types/tslint.json +0 -13
- package/node_modules/fastify-helmet/.github/stale.yml +0 -21
- package/node_modules/fastify-static/.github/stale.yml +0 -21
- package/node_modules/fastify-static/example/public2/test.css +0 -4
- package/node_modules/fastify-static/example/public2/test.html +0 -8
- package/node_modules/fastify-static/example/server-multi-dir-list.js +0 -49
- package/node_modules/fastify-static/node_modules/glob/changelog.md +0 -67
- package/node_modules/fastify-static/test/static/.example +0 -1
- package/node_modules/fastify-static/test/static/a .md +0 -1
- package/node_modules/fastify-static/test/static2/bar.html +0 -3
- package/node_modules/fastify-static/test/static2/index.html +0 -3
- package/node_modules/light-my-request/node_modules/readable-stream/CONTRIBUTING.md +0 -38
- package/node_modules/light-my-request/node_modules/readable-stream/GOVERNANCE.md +0 -136
- package/node_modules/light-my-request/node_modules/readable-stream/LICENSE +0 -47
- package/node_modules/light-my-request/node_modules/readable-stream/README.md +0 -106
- package/node_modules/light-my-request/node_modules/readable-stream/errors-browser.js +0 -127
- package/node_modules/light-my-request/node_modules/readable-stream/errors.js +0 -116
- package/node_modules/light-my-request/node_modules/readable-stream/experimentalWarning.js +0 -17
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_duplex.js +0 -139
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_passthrough.js +0 -39
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_readable.js +0 -1124
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_transform.js +0 -201
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_writable.js +0 -697
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/async_iterator.js +0 -207
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/buffer_list.js +0 -210
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/destroy.js +0 -105
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +0 -104
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/from-browser.js +0 -3
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/from.js +0 -64
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/pipeline.js +0 -97
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/state.js +0 -27
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/stream-browser.js +0 -1
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/stream.js +0 -1
- package/node_modules/light-my-request/node_modules/readable-stream/package.json +0 -100
- package/node_modules/light-my-request/node_modules/readable-stream/readable-browser.js +0 -9
- package/node_modules/light-my-request/node_modules/readable-stream/readable.js +0 -16
- package/node_modules/socketcluster-client/node_modules/clone/.npmignore +0 -4
- package/node_modules/socketcluster-client/node_modules/clone/README.md +0 -178
- package/node_modules/socketcluster-client/node_modules/clone/clone.iml +0 -10
- package/node_modules/socketcluster-client/node_modules/clone/clone.js +0 -251
- package/node_modules/socketcluster-client/node_modules/clone/package.json +0 -161
- package/node_modules/socketcluster-client/node_modules/sc-errors/README.md +0 -2
- package/node_modules/socketcluster-client/node_modules/sc-errors/decycle.js +0 -79
- package/node_modules/socketcluster-client/node_modules/sc-errors/index.js +0 -340
- package/node_modules/socketcluster-client/node_modules/sc-errors/package.json +0 -55
- package/utility/fs/FileObject.jsc +0 -0
- package/utility/fs/fileExists.jsc +0 -0
- package/utility/fs/mkdirp.jsc +0 -0
- package/utility/fs/unlink.jsc +0 -0
- package/utility/fs/writeFile.jsc +0 -0
|
@@ -1,602 +0,0 @@
|
|
|
1
|
-
/* printj.js (C) 2016-present SheetJS -- http://sheetjs.com */
|
|
2
|
-
/* vim: set ts=2: */
|
|
3
|
-
/*jshint sub:true, eqnull:true */
|
|
4
|
-
/*exported PRINTJ */
|
|
5
|
-
var PRINTJ;
|
|
6
|
-
(function (factory) {
|
|
7
|
-
/*jshint ignore:start */
|
|
8
|
-
/*eslint-disable */
|
|
9
|
-
if(typeof DO_NOT_EXPORT_PRINTJ === 'undefined') {
|
|
10
|
-
if('object' === typeof exports) {
|
|
11
|
-
factory(exports);
|
|
12
|
-
} else if ('function' === typeof define && define.amd) {
|
|
13
|
-
define(function () {
|
|
14
|
-
var module = {};
|
|
15
|
-
factory(module);
|
|
16
|
-
return module;
|
|
17
|
-
});
|
|
18
|
-
} else {
|
|
19
|
-
factory(PRINTJ = {});
|
|
20
|
-
}
|
|
21
|
-
} else {
|
|
22
|
-
factory(PRINTJ = {});
|
|
23
|
-
}
|
|
24
|
-
/*eslint-enable */
|
|
25
|
-
/*jshint ignore:end */
|
|
26
|
-
}(function(PRINTJ) {
|
|
27
|
-
|
|
28
|
-
PRINTJ.version = '1.3.0';
|
|
29
|
-
|
|
30
|
-
var tcache = {};
|
|
31
|
-
|
|
32
|
-
function tokenize(fmt) {
|
|
33
|
-
if(tcache[fmt]) return tcache[fmt];
|
|
34
|
-
var out = [];
|
|
35
|
-
var start = 0;
|
|
36
|
-
|
|
37
|
-
var i = 0;
|
|
38
|
-
var infmt = false;
|
|
39
|
-
var fmtparam = "", fmtflags = "", fmtwidth = "", fmtprec = "", fmtlen = "";
|
|
40
|
-
|
|
41
|
-
var c = 0;
|
|
42
|
-
|
|
43
|
-
var L = fmt.length;
|
|
44
|
-
|
|
45
|
-
for(; i < L; ++i) {
|
|
46
|
-
c = fmt.charCodeAt(i);
|
|
47
|
-
if(!infmt) {
|
|
48
|
-
|
|
49
|
-
if(c !== 37) continue;
|
|
50
|
-
|
|
51
|
-
if(start < i) out.push(["L", fmt.substring(start, i)]);
|
|
52
|
-
start = i;
|
|
53
|
-
infmt = true;
|
|
54
|
-
continue;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
if(c >= 48 && c < 58) {
|
|
58
|
-
if(fmtprec.length) fmtprec += String.fromCharCode(c);
|
|
59
|
-
else if(c == 48 && !fmtwidth.length) fmtflags += String.fromCharCode(c);
|
|
60
|
-
else fmtwidth += String.fromCharCode(c);
|
|
61
|
-
} else switch(c) {
|
|
62
|
-
/* positional */
|
|
63
|
-
case 36:
|
|
64
|
-
if(fmtprec.length) fmtprec += "$";
|
|
65
|
-
else if(fmtwidth.charAt(0) == "*") fmtwidth += "$";
|
|
66
|
-
else { fmtparam = fmtwidth + "$"; fmtwidth = ""; }
|
|
67
|
-
break;
|
|
68
|
-
|
|
69
|
-
/* flags */
|
|
70
|
-
case 39: fmtflags += "'"; break;
|
|
71
|
-
case 45: fmtflags += "-"; break;
|
|
72
|
-
case 43: fmtflags += "+"; break;
|
|
73
|
-
case 32: fmtflags += " "; break;
|
|
74
|
-
case 35: fmtflags += "#"; break;
|
|
75
|
-
|
|
76
|
-
/* width and precision */
|
|
77
|
-
case 46: fmtprec = "."; break;
|
|
78
|
-
case 42:
|
|
79
|
-
if(fmtprec.charAt(0) == ".") fmtprec += "*";
|
|
80
|
-
else fmtwidth += "*";
|
|
81
|
-
break;
|
|
82
|
-
|
|
83
|
-
/* length */
|
|
84
|
-
case 104:
|
|
85
|
-
case 108:
|
|
86
|
-
if(fmtlen.length > 1) throw "bad length " + fmtlen + String(c);
|
|
87
|
-
fmtlen += String.fromCharCode(c);
|
|
88
|
-
break;
|
|
89
|
-
|
|
90
|
-
case 76:
|
|
91
|
-
case 106:
|
|
92
|
-
case 122:
|
|
93
|
-
case 116:
|
|
94
|
-
case 113:
|
|
95
|
-
case 90:
|
|
96
|
-
case 119:
|
|
97
|
-
if(fmtlen !== "") throw "bad length " + fmtlen + String.fromCharCode(c);
|
|
98
|
-
fmtlen = String.fromCharCode(c);
|
|
99
|
-
break;
|
|
100
|
-
|
|
101
|
-
case 73:
|
|
102
|
-
if(fmtlen !== "") throw "bad length " + fmtlen + 'I';
|
|
103
|
-
fmtlen = 'I';
|
|
104
|
-
break;
|
|
105
|
-
|
|
106
|
-
/* conversion */
|
|
107
|
-
case 100:
|
|
108
|
-
case 105:
|
|
109
|
-
case 111:
|
|
110
|
-
case 117:
|
|
111
|
-
case 120:
|
|
112
|
-
case 88:
|
|
113
|
-
case 102:
|
|
114
|
-
case 70:
|
|
115
|
-
case 101:
|
|
116
|
-
case 69:
|
|
117
|
-
case 103:
|
|
118
|
-
case 71:
|
|
119
|
-
case 97:
|
|
120
|
-
case 65:
|
|
121
|
-
case 99:
|
|
122
|
-
case 67:
|
|
123
|
-
case 115:
|
|
124
|
-
case 83:
|
|
125
|
-
case 112:
|
|
126
|
-
case 110:
|
|
127
|
-
case 68:
|
|
128
|
-
case 85:
|
|
129
|
-
case 79:
|
|
130
|
-
case 109:
|
|
131
|
-
case 98:
|
|
132
|
-
case 66:
|
|
133
|
-
case 121:
|
|
134
|
-
case 89:
|
|
135
|
-
case 74:
|
|
136
|
-
case 86:
|
|
137
|
-
case 84:
|
|
138
|
-
case 37:
|
|
139
|
-
infmt = false;
|
|
140
|
-
if(fmtprec.length > 1) fmtprec = fmtprec.substr(1);
|
|
141
|
-
out.push([String.fromCharCode(c), fmt.substring(start, i+1), fmtparam, fmtflags, fmtwidth, fmtprec, fmtlen]);
|
|
142
|
-
start = i+1;
|
|
143
|
-
fmtlen = fmtprec = fmtwidth = fmtflags = fmtparam = "";
|
|
144
|
-
break;
|
|
145
|
-
default:
|
|
146
|
-
throw new Error("Invalid format string starting with |" + fmt.substring(start, i+1) + "|");
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
if(start < fmt.length) out.push(["L", fmt.substring(start)]);
|
|
152
|
-
return (tcache[fmt] = out);
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
/*global process:true, util:true, require:true */
|
|
156
|
-
if(typeof process !== 'undefined' && !!process.versions && !!process.versions.node) util=require("util");
|
|
157
|
-
var u_inspect = (typeof util != 'undefined') ? util.inspect : JSON.stringify;
|
|
158
|
-
|
|
159
|
-
function doit(t, args) {
|
|
160
|
-
//var o = [];
|
|
161
|
-
var o = "";
|
|
162
|
-
var argidx = 0, idx = 0;
|
|
163
|
-
var Vnum = 0;
|
|
164
|
-
var pad = "";
|
|
165
|
-
for(var i = 0; i < t.length; ++i) {
|
|
166
|
-
var m = t[i], c = (m[0]).charCodeAt(0);
|
|
167
|
-
/* m order: conv full param flags width prec length */
|
|
168
|
-
|
|
169
|
-
if(c === /*L*/ 76) { o += /*o.push*/(m[1]); continue; }
|
|
170
|
-
if(c === /*%*/ 37) { o += /*o.push*/("%"); continue; }
|
|
171
|
-
|
|
172
|
-
var O = "";
|
|
173
|
-
var isnum = 0, radix = 10, bytes = 4, sign = false;
|
|
174
|
-
|
|
175
|
-
/* flags */
|
|
176
|
-
var flags = m[3]/*||""*/;
|
|
177
|
-
var alt = flags.indexOf("#") > -1;
|
|
178
|
-
|
|
179
|
-
/* position */
|
|
180
|
-
if(m[2]) argidx = parseInt(m[2], 10)-1;
|
|
181
|
-
/* %m special case */
|
|
182
|
-
else if(c === /*m*/ 109 && !alt) { o += /*.push*/("Success"); continue; }
|
|
183
|
-
|
|
184
|
-
/* grab width */
|
|
185
|
-
var width = 0; if( m[ 4].length > 0) { if(m[ 4].charAt(0) !== '*') width = parseInt(m[ 4], 10); else if(m[ 4].length === 1) width = args[idx++]; else width = args[parseInt(m[ 4].substr(1), 10)-1]; }
|
|
186
|
-
|
|
187
|
-
/* grab precision */
|
|
188
|
-
var prec = -1; if( m[ 5].length > 0) { if(m[ 5].charAt(0) !== '*') prec = parseInt(m[ 5], 10); else if(m[ 5].length === 1) prec = args[idx++]; else prec = args[parseInt(m[ 5].substr(1), 10)-1]; }
|
|
189
|
-
|
|
190
|
-
/* position not specified */
|
|
191
|
-
if(!m[2]) argidx = idx++;
|
|
192
|
-
|
|
193
|
-
/* grab argument */
|
|
194
|
-
var arg = args[argidx];
|
|
195
|
-
|
|
196
|
-
/* grab length */
|
|
197
|
-
var len = m[6]/* || ""*/;
|
|
198
|
-
|
|
199
|
-
switch(c) {
|
|
200
|
-
/* str cCsS */
|
|
201
|
-
|
|
202
|
-
case /*S*/ 83:
|
|
203
|
-
case /*s*/ 115:
|
|
204
|
-
/* only valid flag is "-" for left justification */
|
|
205
|
-
O = String(arg);
|
|
206
|
-
if( prec >= 0) O = O.substr(0, prec);
|
|
207
|
-
if( width > O.length || - width > O.length) { if(( flags.indexOf("-") == -1 || width < 0) && flags.indexOf("0") != -1) { pad = ( width - O.length >= 0 ? "0".repeat( width - O.length) : ""); O = pad + O; } else { pad = ( width - O.length >= 0 ? " ".repeat( width - O.length) : ""); O = flags.indexOf("-") > -1 ? O + pad : pad + O; } }
|
|
208
|
-
break;
|
|
209
|
-
|
|
210
|
-
/* first char of string or convert */
|
|
211
|
-
case /*C*/ 67:
|
|
212
|
-
case /*c*/ 99:
|
|
213
|
-
switch(typeof arg) {
|
|
214
|
-
case "number":
|
|
215
|
-
var cc = arg;
|
|
216
|
-
if(c == 67 || len.charCodeAt(0) === /*l*/ 108) { cc &= 0xFFFFFFFF; O = String.fromCharCode( cc); }
|
|
217
|
-
else { cc &= 0xFF; O = String.fromCharCode( cc); }
|
|
218
|
-
break;
|
|
219
|
-
case "string": O = arg.charAt(0); break;
|
|
220
|
-
default: O = String(arg).charAt(0);
|
|
221
|
-
}
|
|
222
|
-
if( width > O.length || - width > O.length) { if(( flags.indexOf("-") == -1 || width < 0) && flags.indexOf("0") != -1) { pad = ( width - O.length >= 0 ? "0".repeat( width - O.length) : ""); O = pad + O; } else { pad = ( width - O.length >= 0 ? " ".repeat( width - O.length) : ""); O = flags.indexOf("-") > -1 ? O + pad : pad + O; } }
|
|
223
|
-
break;
|
|
224
|
-
|
|
225
|
-
/* int diDuUoOxXbB */
|
|
226
|
-
|
|
227
|
-
/* signed integer */
|
|
228
|
-
case /*D*/ 68: bytes = 8;
|
|
229
|
-
/* falls through */
|
|
230
|
-
case /*d*/ 100:
|
|
231
|
-
case /*i*/ 105: isnum = -1; sign = true; break;
|
|
232
|
-
|
|
233
|
-
/* unsigned integer */
|
|
234
|
-
case /*U*/ 85: bytes = 8;
|
|
235
|
-
/* falls through */
|
|
236
|
-
case /*u*/ 117: isnum = -1; break;
|
|
237
|
-
|
|
238
|
-
/* unsigned octal */
|
|
239
|
-
case /*O*/ 79: bytes = 8;
|
|
240
|
-
/* falls through */
|
|
241
|
-
case /*o*/ 111: isnum = -1; radix = (8); break;
|
|
242
|
-
|
|
243
|
-
/* unsigned hex */
|
|
244
|
-
case /*x*/ 120: isnum = -1; radix = (-16); break;
|
|
245
|
-
case /*X*/ 88: isnum = -1; radix = (16); break;
|
|
246
|
-
|
|
247
|
-
/* unsigned binary (extension) */
|
|
248
|
-
case /*B*/ 66: bytes = 8;
|
|
249
|
-
/* falls through */
|
|
250
|
-
case /*b*/ 98: isnum = -1; radix = (2); break;
|
|
251
|
-
|
|
252
|
-
/* flt fegFEGaA */
|
|
253
|
-
|
|
254
|
-
/* floating point logic */
|
|
255
|
-
case /*F*/ 70:
|
|
256
|
-
case /*f*/ 102: isnum = (1); break;
|
|
257
|
-
|
|
258
|
-
case /*E*/ 69:
|
|
259
|
-
case /*e*/ 101: isnum = (2); break;
|
|
260
|
-
|
|
261
|
-
case /*G*/ 71:
|
|
262
|
-
case /*g*/ 103: isnum = (3); break;
|
|
263
|
-
|
|
264
|
-
/* floating hex */
|
|
265
|
-
case /*A*/ 65:
|
|
266
|
-
case /*a*/ 97: isnum = (4); break;
|
|
267
|
-
|
|
268
|
-
/* misc pnmJVTyY */
|
|
269
|
-
|
|
270
|
-
/* JS has no concept of pointers so interpret the `l` key as an address */
|
|
271
|
-
case /*p*/ 112:
|
|
272
|
-
Vnum = typeof arg == "number" ? arg : arg ? Number(arg.l) : -1;
|
|
273
|
-
if(isNaN(Vnum)) Vnum = -1;
|
|
274
|
-
if(alt) O = Vnum.toString(10);
|
|
275
|
-
else {
|
|
276
|
-
Vnum = Math.abs(Vnum);
|
|
277
|
-
O = "0x" + Vnum.toString(16).toLowerCase();
|
|
278
|
-
}
|
|
279
|
-
break;
|
|
280
|
-
|
|
281
|
-
/* store length in the `len` key */
|
|
282
|
-
case /*n*/ 110:
|
|
283
|
-
if(arg) { arg.len = o.length; }
|
|
284
|
-
//if(arg) { arg.len=0; for(var oo = 0; oo < o.length; ++oo) arg.len += o[oo].length; }
|
|
285
|
-
continue;
|
|
286
|
-
|
|
287
|
-
/* process error */
|
|
288
|
-
case /*m*/ 109:
|
|
289
|
-
if(!(arg instanceof Error)) O = "Success";
|
|
290
|
-
else if(arg.message) O = arg.message;
|
|
291
|
-
else if(arg.errno) O = "Error number " + arg.errno;
|
|
292
|
-
else O = "Error " + String(arg);
|
|
293
|
-
break;
|
|
294
|
-
|
|
295
|
-
/* JS-specific conversions (extension) */
|
|
296
|
-
case /*J*/ 74: O = (alt ? u_inspect : JSON.stringify)(arg); break;
|
|
297
|
-
case /*V*/ 86: O = arg == null ? "null" : String(arg.valueOf()); break;
|
|
298
|
-
case /*T*/ 84:
|
|
299
|
-
if(alt) { /* from '[object %s]' extract %s */
|
|
300
|
-
O = Object.prototype.toString.call(arg).substr(8);
|
|
301
|
-
O = O.substr(0, O.length - 1);
|
|
302
|
-
} else O = typeof arg;
|
|
303
|
-
break;
|
|
304
|
-
|
|
305
|
-
/* boolean (extension) */
|
|
306
|
-
case /*Y*/ 89:
|
|
307
|
-
case /*y*/ 121:
|
|
308
|
-
O = (arg) ? (alt ? "yes" : "true") : (alt ? "no" : "false");
|
|
309
|
-
if(c == /*Y*/ 89) O = O.toUpperCase();
|
|
310
|
-
if( prec >= 0) O = O.substr(0, prec);
|
|
311
|
-
if( width > O.length || - width > O.length) { if(( flags.indexOf("-") == -1 || width < 0) && flags.indexOf("0") != -1) { pad = ( width - O.length >= 0 ? "0".repeat( width - O.length) : ""); O = pad + O; } else { pad = ( width - O.length >= 0 ? " ".repeat( width - O.length) : ""); O = flags.indexOf("-") > -1 ? O + pad : pad + O; } }
|
|
312
|
-
break;
|
|
313
|
-
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
if(width < 0) { width = -width; flags += "-"; }
|
|
317
|
-
|
|
318
|
-
if(isnum == -1) {
|
|
319
|
-
|
|
320
|
-
Vnum = Number(arg);
|
|
321
|
-
|
|
322
|
-
/* parse byte length field */
|
|
323
|
-
|
|
324
|
-
switch(len) {
|
|
325
|
-
/* char */
|
|
326
|
-
case "hh": { bytes = 1; } break;
|
|
327
|
-
/* short */
|
|
328
|
-
case "h": { bytes = 2; } break;
|
|
329
|
-
|
|
330
|
-
/* long */
|
|
331
|
-
case "l": { if(bytes == 4) bytes = 8; } break;
|
|
332
|
-
|
|
333
|
-
/* long long */
|
|
334
|
-
case "L":
|
|
335
|
-
case "q":
|
|
336
|
-
case "ll": { if(bytes == 4) bytes = 8; } break;
|
|
337
|
-
|
|
338
|
-
/* intmax_t */
|
|
339
|
-
case "j": { if(bytes == 4) bytes = 8; } break;
|
|
340
|
-
|
|
341
|
-
/* ptrdiff_t */
|
|
342
|
-
case "t": { if(bytes == 4) bytes = 8; } break;
|
|
343
|
-
|
|
344
|
-
/* size_t */
|
|
345
|
-
case "z":
|
|
346
|
-
case "Z": { if(bytes == 4) bytes = 8; } break;
|
|
347
|
-
|
|
348
|
-
/* CRT size_t or ptrdiff_t */
|
|
349
|
-
case "I":
|
|
350
|
-
|
|
351
|
-
{ if(bytes == 4) bytes = 8; }
|
|
352
|
-
|
|
353
|
-
break;
|
|
354
|
-
|
|
355
|
-
/* CRT wchar_t */
|
|
356
|
-
case "w": break;
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
/* restrict value */
|
|
360
|
-
|
|
361
|
-
switch(bytes) {
|
|
362
|
-
case 1: Vnum = (Vnum & 0xFF); if(sign && (Vnum > 0x7F)) Vnum -= (0xFF + 1); break;
|
|
363
|
-
case 2: Vnum = (Vnum & 0xFFFF); if(sign && (Vnum > 0x7FFF)) Vnum -= (0xFFFF + 1); break;
|
|
364
|
-
case 4: Vnum = sign ? (Vnum | 0) : (Vnum >>> 0); break;
|
|
365
|
-
default: Vnum = isNaN(Vnum) ? 0 : Math.round(Vnum); break;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
/* generate string */
|
|
369
|
-
if(bytes > 4 && Vnum < 0 && !sign) {
|
|
370
|
-
if(radix == 16 || radix == -16) {
|
|
371
|
-
O = (Vnum>>>0).toString(16);
|
|
372
|
-
Vnum = Math.floor((Vnum - (Vnum >>> 0)) / Math.pow(2,32));
|
|
373
|
-
O = (Vnum>>>0).toString(16) + (8 - O.length >= 0 ? "0".repeat(8 - O.length) : "") + O;
|
|
374
|
-
O = (16 - O.length >= 0 ? "f".repeat(16 - O.length) : "") + O;
|
|
375
|
-
if(radix == 16) O = O.toUpperCase();
|
|
376
|
-
} else if(radix == 8) {
|
|
377
|
-
O = (Vnum>>>0).toString(8);
|
|
378
|
-
O = (10 - O.length >= 0 ? "0".repeat(10 - O.length) : "") + O;
|
|
379
|
-
Vnum = Math.floor((Vnum - ((Vnum >>> 0)&0x3FFFFFFF)) / Math.pow(2,30));
|
|
380
|
-
O = (Vnum>>>0).toString(8) + O.substr(O.length - 10);
|
|
381
|
-
O = O.substr(O.length - 20);
|
|
382
|
-
O = "1" + (21 - O.length >= 0 ? "7".repeat(21 - O.length) : "") + O;
|
|
383
|
-
} else {
|
|
384
|
-
Vnum = (-Vnum) % 1e16;
|
|
385
|
-
var d1 = [1,8,4,4,6,7,4,4,0,7,3,7,0,9,5,5,1,6,1,6];
|
|
386
|
-
var di = d1.length - 1;
|
|
387
|
-
while(Vnum > 0) {
|
|
388
|
-
if((d1[di] -= (Vnum % 10)) < 0) { d1[di] += 10; d1[di-1]--; }
|
|
389
|
-
--di; Vnum = Math.floor(Vnum / 10);
|
|
390
|
-
}
|
|
391
|
-
O = d1.join("");
|
|
392
|
-
}
|
|
393
|
-
} else {
|
|
394
|
-
if(radix === -16) O = Vnum.toString(16).toLowerCase();
|
|
395
|
-
else if(radix === 16) O = Vnum.toString(16).toUpperCase();
|
|
396
|
-
else O = Vnum.toString(radix);
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
/* apply precision */
|
|
400
|
-
if(prec ===0 && O == "0" && !(radix == 8 && alt)) O = ""; /* bail out */
|
|
401
|
-
else {
|
|
402
|
-
if(O.length < prec + (O.substr(0,1) == "-" ? 1 : 0)) {
|
|
403
|
-
if(O.substr(0,1) != "-") O = (prec - O.length >= 0 ? "0".repeat(prec - O.length) : "") + O;
|
|
404
|
-
else O = O.substr(0,1) + (prec + 1 - O.length >= 0 ? "0".repeat(prec + 1 - O.length) : "") + O.substr(1);
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
/* add prefix for # form */
|
|
408
|
-
if(!sign && alt && Vnum !== 0) switch(radix) {
|
|
409
|
-
case -16: O = "0x" + O; break;
|
|
410
|
-
case 16: O = "0X" + O; break;
|
|
411
|
-
case 8: if(O.charAt(0) != "0") O = "0" + O; break;
|
|
412
|
-
case 2: O = "0b" + O; break;
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
/* add sign character */
|
|
417
|
-
if(sign && O.charAt(0) != "-") {
|
|
418
|
-
if(flags.indexOf("+") > -1) O = "+" + O;
|
|
419
|
-
else if(flags.indexOf(" ") > -1) O = " " + O;
|
|
420
|
-
}
|
|
421
|
-
/* width */
|
|
422
|
-
if(width > 0) {
|
|
423
|
-
if(O.length < width) {
|
|
424
|
-
if(flags.indexOf("-") > -1) {
|
|
425
|
-
O = O + ((width - O.length) >= 0 ? " ".repeat((width - O.length)) : "");
|
|
426
|
-
} else if(flags.indexOf("0") > -1 && prec < 0 && O.length > 0) {
|
|
427
|
-
if(prec > O.length) O = ((prec - O.length) >= 0 ? "0".repeat((prec - O.length)) : "") + O;
|
|
428
|
-
pad = ((width - O.length) >= 0 ? (prec > 0 ? " " : "0").repeat((width - O.length)) : "");
|
|
429
|
-
if(O.charCodeAt(0) < 48) {
|
|
430
|
-
if(O.charAt(2).toLowerCase() == "x") O = O.substr(0,3) + pad + O.substring(3);
|
|
431
|
-
else O = O.substr(0,1) + pad + O.substring(1);
|
|
432
|
-
}
|
|
433
|
-
else if(O.charAt(1).toLowerCase() == "x") O = O.substr(0,2) + pad + O.substring(2);
|
|
434
|
-
else O = pad + O;
|
|
435
|
-
} else {
|
|
436
|
-
O = ((width - O.length) >= 0 ? " ".repeat((width - O.length)) : "") + O;
|
|
437
|
-
}
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
} else if(isnum > 0) {
|
|
442
|
-
|
|
443
|
-
Vnum = Number(arg);
|
|
444
|
-
if(arg === null) Vnum = 0/0;
|
|
445
|
-
if(len == "L") bytes = 12;
|
|
446
|
-
var isf = isFinite(Vnum);
|
|
447
|
-
if(!isf) { /* Infinity or NaN */
|
|
448
|
-
if(Vnum < 0) O = "-";
|
|
449
|
-
else if(flags.indexOf("+") > -1) O = "+";
|
|
450
|
-
else if(flags.indexOf(" ") > -1) O = " ";
|
|
451
|
-
O += (isNaN(Vnum)) ? "nan" : "inf";
|
|
452
|
-
} else {
|
|
453
|
-
var E = 0;
|
|
454
|
-
|
|
455
|
-
if(prec == -1 && isnum != 4) prec = 6;
|
|
456
|
-
|
|
457
|
-
/* g/G conditional behavior */
|
|
458
|
-
if(isnum == 3) {
|
|
459
|
-
O = Vnum.toExponential(1);
|
|
460
|
-
E = +O.substr(O.indexOf("e") + 1);
|
|
461
|
-
if(prec === 0) prec = 1;
|
|
462
|
-
if(prec > E && E >= -4) { isnum = (11); prec = prec -(E + 1); }
|
|
463
|
-
else { isnum = (12); prec = prec - 1; }
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
/* sign: workaround for negative zero */
|
|
467
|
-
var sg = (Vnum < 0 || 1/Vnum == -Infinity) ? "-" : "";
|
|
468
|
-
if(Vnum < 0) Vnum = -Vnum;
|
|
469
|
-
|
|
470
|
-
switch(isnum) {
|
|
471
|
-
/* f/F standard */
|
|
472
|
-
case 1: case 11:
|
|
473
|
-
if(Vnum < 1e21) {
|
|
474
|
-
O = Vnum.toFixed(prec);
|
|
475
|
-
if(isnum == 1) { if(prec===0 &&alt&& O.indexOf(".")==-1) O+="."; }
|
|
476
|
-
else if(!alt) O=O.replace(/(\.\d*[1-9])0*$/,"$1").replace(/\.0*$/,"");
|
|
477
|
-
else if(O.indexOf(".") == -1) O+= ".";
|
|
478
|
-
break;
|
|
479
|
-
}
|
|
480
|
-
O = Vnum.toExponential(20);
|
|
481
|
-
E = +O.substr(O.indexOf("e")+1);
|
|
482
|
-
O = O.charAt(0) + O.substr(2,O.indexOf("e")-2);
|
|
483
|
-
O = O + (E - O.length + 1 >= 0 ? "0".repeat(E - O.length + 1) : "");
|
|
484
|
-
if(alt || (prec > 0 && isnum !== 11)) O = O + "." + (prec >= 0 ? "0".repeat(prec) : "");
|
|
485
|
-
break;
|
|
486
|
-
|
|
487
|
-
/* e/E exponential */
|
|
488
|
-
case 2: case 12:
|
|
489
|
-
O = Vnum.toExponential(prec);
|
|
490
|
-
E = O.indexOf("e");
|
|
491
|
-
if(O.length - E === 3) O = O.substr(0, E+2) + "0" + O.substr(E+2);
|
|
492
|
-
if(alt && O.indexOf(".") == -1) O = O.substr(0,E) +"."+ O.substr(E);
|
|
493
|
-
else if(!alt && isnum == 12) O = O.replace(/\.0*e/, "e").replace(/\.(\d*[1-9])0*e/, ".$1e");
|
|
494
|
-
break;
|
|
495
|
-
|
|
496
|
-
/* a/A hex */
|
|
497
|
-
case 4:
|
|
498
|
-
if(Vnum===0){O= "0x0"+((alt||prec>0)?"."+(prec >= 0 ? "0".repeat(prec) : ""):"")+"p+0"; break;}
|
|
499
|
-
O = Vnum.toString(16);
|
|
500
|
-
/* First char 0-9 */
|
|
501
|
-
var ac = O.charCodeAt(0);
|
|
502
|
-
if(ac == 48) {
|
|
503
|
-
ac = 2; E = -4; Vnum *= 16;
|
|
504
|
-
while(O.charCodeAt(ac++) == 48) { E -= 4; Vnum *= 16; }
|
|
505
|
-
O = Vnum.toString(16);
|
|
506
|
-
ac = O.charCodeAt(0);
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
var ai = O.indexOf(".");
|
|
510
|
-
if(O.indexOf("(") > -1) {
|
|
511
|
-
/* IE exponential form */
|
|
512
|
-
var am = O.match(/\(e(.*)\)/);
|
|
513
|
-
var ae = am ? (+am[1]) : 0;
|
|
514
|
-
E += 4 * ae; Vnum /= Math.pow(16, ae);
|
|
515
|
-
} else if(ai > 1) {
|
|
516
|
-
E += 4 * (ai - 1); Vnum /= Math.pow(16, ai - 1);
|
|
517
|
-
} else if(ai == -1) {
|
|
518
|
-
E += 4 * (O.length - 1); Vnum /= Math.pow(16, O.length - 1);
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
/* at this point 1 <= Vnum < 16 */
|
|
522
|
-
|
|
523
|
-
if(bytes > 8) {
|
|
524
|
-
if(ac < 50) { E -= 3; Vnum *= 8; }
|
|
525
|
-
else if(ac < 52) { E -= 2; Vnum *= 4; }
|
|
526
|
-
else if(ac < 56) { E -= 1; Vnum *= 2; }
|
|
527
|
-
/* at this point 8 <= Vnum < 16 */
|
|
528
|
-
} else {
|
|
529
|
-
if(ac >= 56) { E += 3; Vnum /= 8; }
|
|
530
|
-
else if(ac >= 52) { E += 2; Vnum /= 4; }
|
|
531
|
-
else if(ac >= 50) { E += 1; Vnum /= 2; }
|
|
532
|
-
/* at this point 1 <= Vnum < 2 */
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
O = Vnum.toString(16);
|
|
536
|
-
if(O.length > 1) {
|
|
537
|
-
if(O.length > prec+2 && O.charCodeAt(prec+2) >= 56) {
|
|
538
|
-
var _f = O.charCodeAt(0) == 102;
|
|
539
|
-
O = (Vnum + 8 * Math.pow(16, -prec-1)).toString(16);
|
|
540
|
-
if(_f && O.charCodeAt(0) == 49) E += 4;
|
|
541
|
-
}
|
|
542
|
-
if(prec > 0) {
|
|
543
|
-
O = O.substr(0, prec + 2);
|
|
544
|
-
if(O.length < prec + 2) {
|
|
545
|
-
if(O.charCodeAt(0) < 48) O = O.charAt(0) + ((prec + 2 - O.length) >= 0 ? "0".repeat((prec + 2 - O.length)) : "") + O.substr(1);
|
|
546
|
-
else O += ((prec + 2 - O.length) >= 0 ? "0".repeat((prec + 2 - O.length)) : "");
|
|
547
|
-
}
|
|
548
|
-
} else if(prec === 0) O = O.charAt(0) + (alt ? "." : "");
|
|
549
|
-
} else if(prec > 0) O = O + "." + (prec >= 0 ? "0".repeat(prec) : "");
|
|
550
|
-
else if(alt) O = O + ".";
|
|
551
|
-
O = "0x" + O + "p" + (E>=0 ? "+" + E : E);
|
|
552
|
-
break;
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
if(sg === "") {
|
|
556
|
-
if(flags.indexOf("+") > -1) sg = "+";
|
|
557
|
-
else if(flags.indexOf(" ") > -1) sg = " ";
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
O = sg + O;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
/* width */
|
|
564
|
-
if(width > O.length) {
|
|
565
|
-
if(flags.indexOf("-") > -1) {
|
|
566
|
-
O = O + ((width - O.length) >= 0 ? " ".repeat((width - O.length)) : "");
|
|
567
|
-
} else if(flags.indexOf("0") > -1 && O.length > 0 && isf) {
|
|
568
|
-
pad = ((width - O.length) >= 0 ? "0".repeat((width - O.length)) : "");
|
|
569
|
-
if(O.charCodeAt(0) < 48) {
|
|
570
|
-
if(O.charAt(2).toLowerCase() == "x") O = O.substr(0,3) + pad + O.substring(3);
|
|
571
|
-
else O = O.substr(0,1) + pad + O.substring(1);
|
|
572
|
-
}
|
|
573
|
-
else if(O.charAt(1).toLowerCase() == "x") O = O.substr(0,2) + pad + O.substring(2);
|
|
574
|
-
else O = pad + O;
|
|
575
|
-
} else {
|
|
576
|
-
O = ((width - O.length) >= 0 ? " ".repeat((width - O.length)) : "") + O;
|
|
577
|
-
}
|
|
578
|
-
}
|
|
579
|
-
if(c < 96) O = O.toUpperCase();
|
|
580
|
-
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
o += /*.push*/(O);
|
|
584
|
-
}
|
|
585
|
-
return o/*.join("")*/;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
function vsprintf(fmt, args) { return doit(tokenize(fmt), args); }
|
|
589
|
-
|
|
590
|
-
function sprintf() {
|
|
591
|
-
var args = new Array(arguments.length - 1);
|
|
592
|
-
for(var i = 0; i < args.length; ++i) args[i] = arguments[i+1];
|
|
593
|
-
return doit(tokenize(arguments[0]), args);
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
PRINTJ.sprintf = sprintf;
|
|
597
|
-
PRINTJ.vsprintf = vsprintf;
|
|
598
|
-
PRINTJ._doit = doit;
|
|
599
|
-
PRINTJ._tokenize = tokenize;
|
|
600
|
-
|
|
601
|
-
}));
|
|
602
|
-
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/* printj.js (C) 2016-present SheetJS -- http://sheetjs.com */
|
|
2
|
-
var PRINTJ;(function(factory){if(typeof DO_NOT_EXPORT_PRINTJ==="undefined"){if("object"===typeof exports){factory(exports)}else if("function"===typeof define&&define.amd){define(function(){var module={};factory(module);return module})}else{factory(PRINTJ={})}}else{factory(PRINTJ={})}})(function(PRINTJ){PRINTJ.version="1.3.0";var tcache={};function tokenize(fmt){if(tcache[fmt])return tcache[fmt];var out=[];var start=0;var i=0;var infmt=false;var fmtparam="",fmtflags="",fmtwidth="",fmtprec="",fmtlen="";var c=0;var L=fmt.length;for(;i<L;++i){c=fmt.charCodeAt(i);if(!infmt){if(c!==37)continue;if(start<i)out.push(["L",fmt.substring(start,i)]);start=i;infmt=true;continue}if(c>=48&&c<58){if(fmtprec.length)fmtprec+=String.fromCharCode(c);else if(c==48&&!fmtwidth.length)fmtflags+=String.fromCharCode(c);else fmtwidth+=String.fromCharCode(c)}else switch(c){case 36:if(fmtprec.length)fmtprec+="$";else if(fmtwidth.charAt(0)=="*")fmtwidth+="$";else{fmtparam=fmtwidth+"$";fmtwidth=""}break;case 39:fmtflags+="'";break;case 45:fmtflags+="-";break;case 43:fmtflags+="+";break;case 32:fmtflags+=" ";break;case 35:fmtflags+="#";break;case 46:fmtprec=".";break;case 42:if(fmtprec.charAt(0)==".")fmtprec+="*";else fmtwidth+="*";break;case 104:;case 108:if(fmtlen.length>1)throw"bad length "+fmtlen+String(c);fmtlen+=String.fromCharCode(c);break;case 76:;case 106:;case 122:;case 116:;case 113:;case 90:;case 119:if(fmtlen!=="")throw"bad length "+fmtlen+String.fromCharCode(c);fmtlen=String.fromCharCode(c);break;case 73:if(fmtlen!=="")throw"bad length "+fmtlen+"I";fmtlen="I";break;case 100:;case 105:;case 111:;case 117:;case 120:;case 88:;case 102:;case 70:;case 101:;case 69:;case 103:;case 71:;case 97:;case 65:;case 99:;case 67:;case 115:;case 83:;case 112:;case 110:;case 68:;case 85:;case 79:;case 109:;case 98:;case 66:;case 121:;case 89:;case 74:;case 86:;case 84:;case 37:infmt=false;if(fmtprec.length>1)fmtprec=fmtprec.substr(1);out.push([String.fromCharCode(c),fmt.substring(start,i+1),fmtparam,fmtflags,fmtwidth,fmtprec,fmtlen]);start=i+1;fmtlen=fmtprec=fmtwidth=fmtflags=fmtparam="";break;default:throw new Error("Invalid format string starting with |"+fmt.substring(start,i+1)+"|");}}if(start<fmt.length)out.push(["L",fmt.substring(start)]);return tcache[fmt]=out}if(typeof process!=="undefined"&&!!process.versions&&!!process.versions.node)util=require("util");var u_inspect=typeof util!="undefined"?util.inspect:JSON.stringify;function doit(t,args){var o="";var argidx=0,idx=0;var Vnum=0;var pad="";for(var i=0;i<t.length;++i){var m=t[i],c=m[0].charCodeAt(0);if(c===76){o+=m[1];continue}if(c===37){o+="%";continue}var O="";var isnum=0,radix=10,bytes=4,sign=false;var flags=m[3];var alt=flags.indexOf("#")>-1;if(m[2])argidx=parseInt(m[2],10)-1;else if(c===109&&!alt){o+="Success";continue}var width=0;if(m[4].length>0){if(m[4].charAt(0)!=="*")width=parseInt(m[4],10);else if(m[4].length===1)width=args[idx++];else width=args[parseInt(m[4].substr(1),10)-1]}var prec=-1;if(m[5].length>0){if(m[5].charAt(0)!=="*")prec=parseInt(m[5],10);else if(m[5].length===1)prec=args[idx++];else prec=args[parseInt(m[5].substr(1),10)-1]}if(!m[2])argidx=idx++;var arg=args[argidx];var len=m[6];switch(c){case 83:;case 115:O=String(arg);if(prec>=0)O=O.substr(0,prec);if(width>O.length||-width>O.length){if((flags.indexOf("-")==-1||width<0)&&flags.indexOf("0")!=-1){pad=width-O.length>=0?"0".repeat(width-O.length):"";O=pad+O}else{pad=width-O.length>=0?" ".repeat(width-O.length):"";O=flags.indexOf("-")>-1?O+pad:pad+O}}break;case 67:;case 99:switch(typeof arg){case"number":var cc=arg;if(c==67||len.charCodeAt(0)===108){cc&=4294967295;O=String.fromCharCode(cc)}else{cc&=255;O=String.fromCharCode(cc)}break;case"string":O=arg.charAt(0);break;default:O=String(arg).charAt(0);}if(width>O.length||-width>O.length){if((flags.indexOf("-")==-1||width<0)&&flags.indexOf("0")!=-1){pad=width-O.length>=0?"0".repeat(width-O.length):"";O=pad+O}else{pad=width-O.length>=0?" ".repeat(width-O.length):"";O=flags.indexOf("-")>-1?O+pad:pad+O}}break;case 68:bytes=8;case 100:;case 105:isnum=-1;sign=true;break;case 85:bytes=8;case 117:isnum=-1;break;case 79:bytes=8;case 111:isnum=-1;radix=8;break;case 120:isnum=-1;radix=-16;break;case 88:isnum=-1;radix=16;break;case 66:bytes=8;case 98:isnum=-1;radix=2;break;case 70:;case 102:isnum=1;break;case 69:;case 101:isnum=2;break;case 71:;case 103:isnum=3;break;case 65:;case 97:isnum=4;break;case 112:Vnum=typeof arg=="number"?arg:arg?Number(arg.l):-1;if(isNaN(Vnum))Vnum=-1;if(alt)O=Vnum.toString(10);else{Vnum=Math.abs(Vnum);O="0x"+Vnum.toString(16).toLowerCase()}break;case 110:if(arg){arg.len=o.length}continue;case 109:if(!(arg instanceof Error))O="Success";else if(arg.message)O=arg.message;else if(arg.errno)O="Error number "+arg.errno;else O="Error "+String(arg);break;case 74:O=(alt?u_inspect:JSON.stringify)(arg);break;case 86:O=arg==null?"null":String(arg.valueOf());break;case 84:if(alt){O=Object.prototype.toString.call(arg).substr(8);O=O.substr(0,O.length-1)}else O=typeof arg;break;case 89:;case 121:O=arg?alt?"yes":"true":alt?"no":"false";if(c==89)O=O.toUpperCase();if(prec>=0)O=O.substr(0,prec);if(width>O.length||-width>O.length){if((flags.indexOf("-")==-1||width<0)&&flags.indexOf("0")!=-1){pad=width-O.length>=0?"0".repeat(width-O.length):"";O=pad+O}else{pad=width-O.length>=0?" ".repeat(width-O.length):"";O=flags.indexOf("-")>-1?O+pad:pad+O}}break;}if(width<0){width=-width;flags+="-"}if(isnum==-1){Vnum=Number(arg);switch(len){case"hh":{bytes=1}break;case"h":{bytes=2}break;case"l":{if(bytes==4)bytes=8}break;case"L":;case"q":;case"ll":{if(bytes==4)bytes=8}break;case"j":{if(bytes==4)bytes=8}break;case"t":{if(bytes==4)bytes=8}break;case"z":;case"Z":{if(bytes==4)bytes=8}break;case"I":{if(bytes==4)bytes=8}break;case"w":break;}switch(bytes){case 1:Vnum=Vnum&255;if(sign&&Vnum>127)Vnum-=255+1;break;case 2:Vnum=Vnum&65535;if(sign&&Vnum>32767)Vnum-=65535+1;break;case 4:Vnum=sign?Vnum|0:Vnum>>>0;break;default:Vnum=isNaN(Vnum)?0:Math.round(Vnum);break;}if(bytes>4&&Vnum<0&&!sign){if(radix==16||radix==-16){O=(Vnum>>>0).toString(16);Vnum=Math.floor((Vnum-(Vnum>>>0))/Math.pow(2,32));O=(Vnum>>>0).toString(16)+(8-O.length>=0?"0".repeat(8-O.length):"")+O;O=(16-O.length>=0?"f".repeat(16-O.length):"")+O;if(radix==16)O=O.toUpperCase()}else if(radix==8){O=(Vnum>>>0).toString(8);O=(10-O.length>=0?"0".repeat(10-O.length):"")+O;Vnum=Math.floor((Vnum-(Vnum>>>0&1073741823))/Math.pow(2,30));O=(Vnum>>>0).toString(8)+O.substr(O.length-10);O=O.substr(O.length-20);O="1"+(21-O.length>=0?"7".repeat(21-O.length):"")+O}else{Vnum=-Vnum%1e16;var d1=[1,8,4,4,6,7,4,4,0,7,3,7,0,9,5,5,1,6,1,6];var di=d1.length-1;while(Vnum>0){if((d1[di]-=Vnum%10)<0){d1[di]+=10;d1[di-1]--}--di;Vnum=Math.floor(Vnum/10)}O=d1.join("")}}else{if(radix===-16)O=Vnum.toString(16).toLowerCase();else if(radix===16)O=Vnum.toString(16).toUpperCase();else O=Vnum.toString(radix)}if(prec===0&&O=="0"&&!(radix==8&&alt))O="";else{if(O.length<prec+(O.substr(0,1)=="-"?1:0)){if(O.substr(0,1)!="-")O=(prec-O.length>=0?"0".repeat(prec-O.length):"")+O;else O=O.substr(0,1)+(prec+1-O.length>=0?"0".repeat(prec+1-O.length):"")+O.substr(1)}if(!sign&&alt&&Vnum!==0)switch(radix){case-16:O="0x"+O;break;case 16:O="0X"+O;break;case 8:if(O.charAt(0)!="0")O="0"+O;break;case 2:O="0b"+O;break;}}if(sign&&O.charAt(0)!="-"){if(flags.indexOf("+")>-1)O="+"+O;else if(flags.indexOf(" ")>-1)O=" "+O}if(width>0){if(O.length<width){if(flags.indexOf("-")>-1){O=O+(width-O.length>=0?" ".repeat(width-O.length):"")}else if(flags.indexOf("0")>-1&&prec<0&&O.length>0){if(prec>O.length)O=(prec-O.length>=0?"0".repeat(prec-O.length):"")+O;pad=width-O.length>=0?(prec>0?" ":"0").repeat(width-O.length):"";if(O.charCodeAt(0)<48){if(O.charAt(2).toLowerCase()=="x")O=O.substr(0,3)+pad+O.substring(3);else O=O.substr(0,1)+pad+O.substring(1)}else if(O.charAt(1).toLowerCase()=="x")O=O.substr(0,2)+pad+O.substring(2);else O=pad+O}else{O=(width-O.length>=0?" ".repeat(width-O.length):"")+O}}}}else if(isnum>0){Vnum=Number(arg);if(arg===null)Vnum=0/0;if(len=="L")bytes=12;var isf=isFinite(Vnum);if(!isf){if(Vnum<0)O="-";else if(flags.indexOf("+")>-1)O="+";else if(flags.indexOf(" ")>-1)O=" ";O+=isNaN(Vnum)?"nan":"inf"}else{var E=0;if(prec==-1&&isnum!=4)prec=6;if(isnum==3){O=Vnum.toExponential(1);E=+O.substr(O.indexOf("e")+1);if(prec===0)prec=1;if(prec>E&&E>=-4){isnum=11;prec=prec-(E+1)}else{isnum=12;prec=prec-1}}var sg=Vnum<0||1/Vnum==-Infinity?"-":"";if(Vnum<0)Vnum=-Vnum;switch(isnum){case 1:;case 11:if(Vnum<1e21){O=Vnum.toFixed(prec);if(isnum==1){if(prec===0&&alt&&O.indexOf(".")==-1)O+="."}else if(!alt)O=O.replace(/(\.\d*[1-9])0*$/,"$1").replace(/\.0*$/,"");else if(O.indexOf(".")==-1)O+=".";break}O=Vnum.toExponential(20);E=+O.substr(O.indexOf("e")+1);O=O.charAt(0)+O.substr(2,O.indexOf("e")-2);O=O+(E-O.length+1>=0?"0".repeat(E-O.length+1):"");if(alt||prec>0&&isnum!==11)O=O+"."+(prec>=0?"0".repeat(prec):"");break;case 2:;case 12:O=Vnum.toExponential(prec);E=O.indexOf("e");if(O.length-E===3)O=O.substr(0,E+2)+"0"+O.substr(E+2);if(alt&&O.indexOf(".")==-1)O=O.substr(0,E)+"."+O.substr(E);else if(!alt&&isnum==12)O=O.replace(/\.0*e/,"e").replace(/\.(\d*[1-9])0*e/,".$1e");break;case 4:if(Vnum===0){O="0x0"+(alt||prec>0?"."+(prec>=0?"0".repeat(prec):""):"")+"p+0";break}O=Vnum.toString(16);var ac=O.charCodeAt(0);if(ac==48){ac=2;E=-4;Vnum*=16;while(O.charCodeAt(ac++)==48){E-=4;Vnum*=16}O=Vnum.toString(16);ac=O.charCodeAt(0)}var ai=O.indexOf(".");if(O.indexOf("(")>-1){var am=O.match(/\(e(.*)\)/);var ae=am?+am[1]:0;E+=4*ae;Vnum/=Math.pow(16,ae)}else if(ai>1){E+=4*(ai-1);Vnum/=Math.pow(16,ai-1)}else if(ai==-1){E+=4*(O.length-1);Vnum/=Math.pow(16,O.length-1)}if(bytes>8){if(ac<50){E-=3;Vnum*=8}else if(ac<52){E-=2;Vnum*=4}else if(ac<56){E-=1;Vnum*=2}}else{if(ac>=56){E+=3;Vnum/=8}else if(ac>=52){E+=2;Vnum/=4}else if(ac>=50){E+=1;Vnum/=2}}O=Vnum.toString(16);if(O.length>1){if(O.length>prec+2&&O.charCodeAt(prec+2)>=56){var _f=O.charCodeAt(0)==102;O=(Vnum+8*Math.pow(16,-prec-1)).toString(16);if(_f&&O.charCodeAt(0)==49)E+=4}if(prec>0){O=O.substr(0,prec+2);if(O.length<prec+2){if(O.charCodeAt(0)<48)O=O.charAt(0)+(prec+2-O.length>=0?"0".repeat(prec+2-O.length):"")+O.substr(1);else O+=prec+2-O.length>=0?"0".repeat(prec+2-O.length):""}}else if(prec===0)O=O.charAt(0)+(alt?".":"")}else if(prec>0)O=O+"."+(prec>=0?"0".repeat(prec):"");else if(alt)O=O+".";O="0x"+O+"p"+(E>=0?"+"+E:E);break;}if(sg===""){if(flags.indexOf("+")>-1)sg="+";else if(flags.indexOf(" ")>-1)sg=" "}O=sg+O}if(width>O.length){if(flags.indexOf("-")>-1){O=O+(width-O.length>=0?" ".repeat(width-O.length):"")}else if(flags.indexOf("0")>-1&&O.length>0&&isf){pad=width-O.length>=0?"0".repeat(width-O.length):"";if(O.charCodeAt(0)<48){if(O.charAt(2).toLowerCase()=="x")O=O.substr(0,3)+pad+O.substring(3);else O=O.substr(0,1)+pad+O.substring(1)}else if(O.charAt(1).toLowerCase()=="x")O=O.substr(0,2)+pad+O.substring(2);else O=pad+O}else{O=(width-O.length>=0?" ".repeat(width-O.length):"")+O}}if(c<96)O=O.toUpperCase()}o+=O}return o}function vsprintf(fmt,args){return doit(tokenize(fmt),args)}function sprintf(){var args=new Array(arguments.length-1);for(var i=0;i<args.length;++i)args[i]=arguments[i+1];return doit(tokenize(arguments[0]),args)}PRINTJ.sprintf=sprintf;PRINTJ.vsprintf=vsprintf;PRINTJ._doit=doit;PRINTJ._tokenize=tokenize});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["printj.js"],"names":["PRINTJ","factory","DO_NOT_EXPORT_PRINTJ","exports","define","amd","module","version","tcache","tokenize","fmt","out","start","i","infmt","fmtparam","fmtflags","fmtwidth","fmtprec","fmtlen","c","L","length","charCodeAt","push","substring","String","fromCharCode","charAt","substr","Error","process","versions","node","util","require","u_inspect","inspect","JSON","stringify","doit","t","args","o","argidx","idx","Vnum","pad","m","O","isnum","radix","bytes","sign","flags","alt","indexOf","parseInt","width","prec","arg","len","repeat","cc","Number","l","isNaN","toString","Math","abs","toLowerCase","message","errno","valueOf","Object","prototype","call","toUpperCase","round","floor","pow","d1","di","join","isf","isFinite","E","toExponential","sg","Infinity","toFixed","replace","ac","ai","am","match","ae","_f","vsprintf","sprintf","Array","arguments","_doit","_tokenize"],"mappings":"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","file":"dist/printj.min.js"}
|