lightclaw2 0.0.1
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 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -0
- package/dist/src/channel.d.ts +11 -0
- package/dist/src/channel.d.ts.map +1 -0
- package/dist/src/channel.js +255 -0
- package/dist/src/channel.js.map +1 -0
- package/dist/src/config.d.ts +29 -0
- package/dist/src/config.d.ts.map +1 -0
- package/dist/src/config.js +99 -0
- package/dist/src/config.js.map +1 -0
- package/dist/src/dedup.d.ts +7 -0
- package/dist/src/dedup.d.ts.map +1 -0
- package/dist/src/dedup.js +52 -0
- package/dist/src/dedup.js.map +1 -0
- package/dist/src/gateway.d.ts +16 -0
- package/dist/src/gateway.d.ts.map +1 -0
- package/dist/src/gateway.js +283 -0
- package/dist/src/gateway.js.map +1 -0
- package/dist/src/inbound.d.ts +18 -0
- package/dist/src/inbound.d.ts.map +1 -0
- package/dist/src/inbound.js +252 -0
- package/dist/src/inbound.js.map +1 -0
- package/dist/src/media.d.ts +12 -0
- package/dist/src/media.d.ts.map +1 -0
- package/dist/src/media.js +87 -0
- package/dist/src/media.js.map +1 -0
- package/dist/src/outbound.d.ts +28 -0
- package/dist/src/outbound.d.ts.map +1 -0
- package/dist/src/outbound.js +172 -0
- package/dist/src/outbound.js.map +1 -0
- package/dist/src/runtime.d.ts +4 -0
- package/dist/src/runtime.d.ts.map +1 -0
- package/dist/src/runtime.js +11 -0
- package/dist/src/runtime.js.map +1 -0
- package/dist/src/session-history.d.ts +88 -0
- package/dist/src/session-history.d.ts.map +1 -0
- package/dist/src/session-history.js +545 -0
- package/dist/src/session-history.js.map +1 -0
- package/dist/src/socket-handlers.d.ts +21 -0
- package/dist/src/socket-handlers.d.ts.map +1 -0
- package/dist/src/socket-handlers.js +120 -0
- package/dist/src/socket-handlers.js.map +1 -0
- package/dist/src/socket-registry.d.ts +53 -0
- package/dist/src/socket-registry.d.ts.map +1 -0
- package/dist/src/socket-registry.js +115 -0
- package/dist/src/socket-registry.js.map +1 -0
- package/dist/src/types.d.ts +100 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/src/types.js +10 -0
- package/dist/src/types.js.map +1 -0
- package/node_modules/@socket.io/component-emitter/LICENSE +24 -0
- package/node_modules/@socket.io/component-emitter/Readme.md +79 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts +179 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.js +176 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/package.json +4 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/index.d.ts +179 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/index.js +169 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/package.json +4 -0
- package/node_modules/@socket.io/component-emitter/package.json +28 -0
- package/node_modules/debug/LICENSE +20 -0
- package/node_modules/debug/README.md +481 -0
- package/node_modules/debug/package.json +64 -0
- package/node_modules/debug/src/browser.js +272 -0
- package/node_modules/debug/src/common.js +292 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/node.js +263 -0
- package/node_modules/engine.io-client/LICENSE +22 -0
- package/node_modules/engine.io-client/README.md +331 -0
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.js +4 -0
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.js +14 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.js +38 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.js +67 -0
- package/node_modules/engine.io-client/build/cjs/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/cjs/globals.js +26 -0
- package/node_modules/engine.io-client/build/cjs/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/cjs/globals.node.js +97 -0
- package/node_modules/engine.io-client/build/cjs/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/index.js +32 -0
- package/node_modules/engine.io-client/build/cjs/package.json +10 -0
- package/node_modules/engine.io-client/build/cjs/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/cjs/socket.js +765 -0
- package/node_modules/engine.io-client/build/cjs/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/cjs/transport.js +153 -0
- package/node_modules/engine.io-client/build/cjs/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/cjs/transports/index.js +11 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.js +60 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.js +285 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.js +44 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling.js +165 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.js +136 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.js +68 -0
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.js +94 -0
- package/node_modules/engine.io-client/build/cjs/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/cjs/util.js +65 -0
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.js +2 -0
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.js +11 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.js +34 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.js +64 -0
- package/node_modules/engine.io-client/build/esm/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/esm/globals.js +22 -0
- package/node_modules/engine.io-client/build/esm/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/esm/globals.node.js +91 -0
- package/node_modules/engine.io-client/build/esm/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/index.js +15 -0
- package/node_modules/engine.io-client/build/esm/package.json +10 -0
- package/node_modules/engine.io-client/build/esm/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/esm/socket.js +727 -0
- package/node_modules/engine.io-client/build/esm/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/esm/transport.js +142 -0
- package/node_modules/engine.io-client/build/esm/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/esm/transports/index.js +8 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.js +56 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +271 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.js +17 -0
- package/node_modules/engine.io-client/build/esm/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/esm/transports/polling.js +145 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.js +125 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.js +41 -0
- package/node_modules/engine.io-client/build/esm/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/esm/transports/webtransport.js +80 -0
- package/node_modules/engine.io-client/build/esm/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/esm/util.js +59 -0
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.js +2 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.js +11 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.js +34 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.js +64 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.js +22 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.node.js +91 -0
- package/node_modules/engine.io-client/build/esm-debug/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/index.js +15 -0
- package/node_modules/engine.io-client/build/esm-debug/package.json +10 -0
- package/node_modules/engine.io-client/build/esm-debug/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/esm-debug/socket.js +756 -0
- package/node_modules/engine.io-client/build/esm-debug/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/esm-debug/transport.js +145 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/index.js +8 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.js +56 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.js +276 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.js +17 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.js +158 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.js +128 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.js +41 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.js +87 -0
- package/node_modules/engine.io-client/build/esm-debug/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/esm-debug/util.js +59 -0
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js +7 -0
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js.map +1 -0
- package/node_modules/engine.io-client/dist/engine.io.js +3064 -0
- package/node_modules/engine.io-client/dist/engine.io.js.map +1 -0
- package/node_modules/engine.io-client/dist/engine.io.min.js +7 -0
- package/node_modules/engine.io-client/dist/engine.io.min.js.map +1 -0
- package/node_modules/engine.io-client/node_modules/ws/LICENSE +20 -0
- package/node_modules/engine.io-client/node_modules/ws/README.md +548 -0
- package/node_modules/engine.io-client/node_modules/ws/browser.js +8 -0
- package/node_modules/engine.io-client/node_modules/ws/index.js +13 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/constants.js +18 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/receiver.js +706 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/sender.js +602 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/websocket-server.js +550 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/websocket.js +1388 -0
- package/node_modules/engine.io-client/node_modules/ws/package.json +69 -0
- package/node_modules/engine.io-client/node_modules/ws/wrapper.mjs +8 -0
- package/node_modules/engine.io-client/package.json +95 -0
- package/node_modules/engine.io-parser/LICENSE +22 -0
- package/node_modules/engine.io-parser/Readme.md +158 -0
- package/node_modules/engine.io-parser/build/cjs/commons.d.ts +14 -0
- package/node_modules/engine.io-parser/build/cjs/commons.js +19 -0
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.js +48 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.js +66 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.js +59 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.d.ts +4 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.js +72 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.d.ts +3 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.js +38 -0
- package/node_modules/engine.io-parser/build/cjs/index.d.ts +9 -0
- package/node_modules/engine.io-parser/build/cjs/index.js +164 -0
- package/node_modules/engine.io-parser/build/cjs/package.json +8 -0
- package/node_modules/engine.io-parser/build/esm/commons.d.ts +14 -0
- package/node_modules/engine.io-parser/build/esm/commons.js +14 -0
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +43 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +62 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.js +55 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.d.ts +4 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +68 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.d.ts +3 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.js +33 -0
- package/node_modules/engine.io-parser/build/esm/index.d.ts +9 -0
- package/node_modules/engine.io-parser/build/esm/index.js +156 -0
- package/node_modules/engine.io-parser/build/esm/package.json +8 -0
- package/node_modules/engine.io-parser/package.json +46 -0
- package/node_modules/ms/index.js +162 -0
- package/node_modules/ms/license.md +21 -0
- package/node_modules/ms/package.json +38 -0
- package/node_modules/ms/readme.md +59 -0
- package/node_modules/socket.io-client/LICENSE +21 -0
- package/node_modules/socket.io-client/README.md +29 -0
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.js +4 -0
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.js +69 -0
- package/node_modules/socket.io-client/build/cjs/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/cjs/index.js +76 -0
- package/node_modules/socket.io-client/build/cjs/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/cjs/manager.js +416 -0
- package/node_modules/socket.io-client/build/cjs/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/cjs/on.js +9 -0
- package/node_modules/socket.io-client/build/cjs/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/cjs/socket.js +909 -0
- package/node_modules/socket.io-client/build/cjs/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/cjs/url.js +69 -0
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.js +2 -0
- package/node_modules/socket.io-client/build/esm/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/esm/contrib/backo2.js +66 -0
- package/node_modules/socket.io-client/build/esm/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/esm/index.js +58 -0
- package/node_modules/socket.io-client/build/esm/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/esm/manager.js +367 -0
- package/node_modules/socket.io-client/build/esm/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm/on.js +6 -0
- package/node_modules/socket.io-client/build/esm/package.json +5 -0
- package/node_modules/socket.io-client/build/esm/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/esm/socket.js +880 -0
- package/node_modules/socket.io-client/build/esm/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/esm/url.js +59 -0
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.js +2 -0
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.js +66 -0
- package/node_modules/socket.io-client/build/esm-debug/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/esm-debug/index.js +62 -0
- package/node_modules/socket.io-client/build/esm-debug/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/esm-debug/manager.js +386 -0
- package/node_modules/socket.io-client/build/esm-debug/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm-debug/on.js +6 -0
- package/node_modules/socket.io-client/build/esm-debug/package.json +5 -0
- package/node_modules/socket.io-client/build/esm-debug/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/esm-debug/socket.js +902 -0
- package/node_modules/socket.io-client/build/esm-debug/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/esm-debug/url.js +63 -0
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.js +4955 -0
- package/node_modules/socket.io-client/dist/socket.io.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.min.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js.map +1 -0
- package/node_modules/socket.io-client/package.json +101 -0
- package/node_modules/socket.io-parser/LICENSE +20 -0
- package/node_modules/socket.io-parser/Readme.md +81 -0
- package/node_modules/socket.io-parser/build/cjs/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/cjs/binary.js +87 -0
- package/node_modules/socket.io-parser/build/cjs/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/cjs/index.js +359 -0
- package/node_modules/socket.io-parser/build/cjs/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/cjs/is-binary.js +54 -0
- package/node_modules/socket.io-parser/build/cjs/package.json +3 -0
- package/node_modules/socket.io-parser/build/esm/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/esm/binary.js +83 -0
- package/node_modules/socket.io-parser/build/esm/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/esm/index.js +348 -0
- package/node_modules/socket.io-parser/build/esm/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/esm/is-binary.js +50 -0
- package/node_modules/socket.io-parser/build/esm/package.json +3 -0
- package/node_modules/socket.io-parser/build/esm-debug/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/esm-debug/binary.js +83 -0
- package/node_modules/socket.io-parser/build/esm-debug/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/esm-debug/index.js +353 -0
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.js +50 -0
- package/node_modules/socket.io-parser/build/esm-debug/package.json +3 -0
- package/node_modules/socket.io-parser/package.json +44 -0
- package/node_modules/xmlhttprequest-ssl/LICENSE +22 -0
- package/node_modules/xmlhttprequest-ssl/README.md +67 -0
- package/node_modules/xmlhttprequest-ssl/lib/XMLHttpRequest.js +689 -0
- package/node_modules/xmlhttprequest-ssl/package.json +40 -0
- package/openclaw.plugin.json +17 -0
- package/package.json +61 -0
- package/skills/lightclaw-cron/SKILL.md +381 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const BINARY_TYPES = ['nodebuffer', 'arraybuffer', 'fragments'];
|
|
4
|
+
const hasBlob = typeof Blob !== 'undefined';
|
|
5
|
+
|
|
6
|
+
if (hasBlob) BINARY_TYPES.push('blob');
|
|
7
|
+
|
|
8
|
+
module.exports = {
|
|
9
|
+
BINARY_TYPES,
|
|
10
|
+
EMPTY_BUFFER: Buffer.alloc(0),
|
|
11
|
+
GUID: '258EAFA5-E914-47DA-95CA-C5AB0DC85B11',
|
|
12
|
+
hasBlob,
|
|
13
|
+
kForOnEventAttribute: Symbol('kIsForOnEventAttribute'),
|
|
14
|
+
kListener: Symbol('kListener'),
|
|
15
|
+
kStatusCode: Symbol('status-code'),
|
|
16
|
+
kWebSocket: Symbol('websocket'),
|
|
17
|
+
NOOP: () => {}
|
|
18
|
+
};
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { kForOnEventAttribute, kListener } = require('./constants');
|
|
4
|
+
|
|
5
|
+
const kCode = Symbol('kCode');
|
|
6
|
+
const kData = Symbol('kData');
|
|
7
|
+
const kError = Symbol('kError');
|
|
8
|
+
const kMessage = Symbol('kMessage');
|
|
9
|
+
const kReason = Symbol('kReason');
|
|
10
|
+
const kTarget = Symbol('kTarget');
|
|
11
|
+
const kType = Symbol('kType');
|
|
12
|
+
const kWasClean = Symbol('kWasClean');
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Class representing an event.
|
|
16
|
+
*/
|
|
17
|
+
class Event {
|
|
18
|
+
/**
|
|
19
|
+
* Create a new `Event`.
|
|
20
|
+
*
|
|
21
|
+
* @param {String} type The name of the event
|
|
22
|
+
* @throws {TypeError} If the `type` argument is not specified
|
|
23
|
+
*/
|
|
24
|
+
constructor(type) {
|
|
25
|
+
this[kTarget] = null;
|
|
26
|
+
this[kType] = type;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {*}
|
|
31
|
+
*/
|
|
32
|
+
get target() {
|
|
33
|
+
return this[kTarget];
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @type {String}
|
|
38
|
+
*/
|
|
39
|
+
get type() {
|
|
40
|
+
return this[kType];
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
Object.defineProperty(Event.prototype, 'target', { enumerable: true });
|
|
45
|
+
Object.defineProperty(Event.prototype, 'type', { enumerable: true });
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Class representing a close event.
|
|
49
|
+
*
|
|
50
|
+
* @extends Event
|
|
51
|
+
*/
|
|
52
|
+
class CloseEvent extends Event {
|
|
53
|
+
/**
|
|
54
|
+
* Create a new `CloseEvent`.
|
|
55
|
+
*
|
|
56
|
+
* @param {String} type The name of the event
|
|
57
|
+
* @param {Object} [options] A dictionary object that allows for setting
|
|
58
|
+
* attributes via object members of the same name
|
|
59
|
+
* @param {Number} [options.code=0] The status code explaining why the
|
|
60
|
+
* connection was closed
|
|
61
|
+
* @param {String} [options.reason=''] A human-readable string explaining why
|
|
62
|
+
* the connection was closed
|
|
63
|
+
* @param {Boolean} [options.wasClean=false] Indicates whether or not the
|
|
64
|
+
* connection was cleanly closed
|
|
65
|
+
*/
|
|
66
|
+
constructor(type, options = {}) {
|
|
67
|
+
super(type);
|
|
68
|
+
|
|
69
|
+
this[kCode] = options.code === undefined ? 0 : options.code;
|
|
70
|
+
this[kReason] = options.reason === undefined ? '' : options.reason;
|
|
71
|
+
this[kWasClean] = options.wasClean === undefined ? false : options.wasClean;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @type {Number}
|
|
76
|
+
*/
|
|
77
|
+
get code() {
|
|
78
|
+
return this[kCode];
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* @type {String}
|
|
83
|
+
*/
|
|
84
|
+
get reason() {
|
|
85
|
+
return this[kReason];
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* @type {Boolean}
|
|
90
|
+
*/
|
|
91
|
+
get wasClean() {
|
|
92
|
+
return this[kWasClean];
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
Object.defineProperty(CloseEvent.prototype, 'code', { enumerable: true });
|
|
97
|
+
Object.defineProperty(CloseEvent.prototype, 'reason', { enumerable: true });
|
|
98
|
+
Object.defineProperty(CloseEvent.prototype, 'wasClean', { enumerable: true });
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Class representing an error event.
|
|
102
|
+
*
|
|
103
|
+
* @extends Event
|
|
104
|
+
*/
|
|
105
|
+
class ErrorEvent extends Event {
|
|
106
|
+
/**
|
|
107
|
+
* Create a new `ErrorEvent`.
|
|
108
|
+
*
|
|
109
|
+
* @param {String} type The name of the event
|
|
110
|
+
* @param {Object} [options] A dictionary object that allows for setting
|
|
111
|
+
* attributes via object members of the same name
|
|
112
|
+
* @param {*} [options.error=null] The error that generated this event
|
|
113
|
+
* @param {String} [options.message=''] The error message
|
|
114
|
+
*/
|
|
115
|
+
constructor(type, options = {}) {
|
|
116
|
+
super(type);
|
|
117
|
+
|
|
118
|
+
this[kError] = options.error === undefined ? null : options.error;
|
|
119
|
+
this[kMessage] = options.message === undefined ? '' : options.message;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* @type {*}
|
|
124
|
+
*/
|
|
125
|
+
get error() {
|
|
126
|
+
return this[kError];
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* @type {String}
|
|
131
|
+
*/
|
|
132
|
+
get message() {
|
|
133
|
+
return this[kMessage];
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
Object.defineProperty(ErrorEvent.prototype, 'error', { enumerable: true });
|
|
138
|
+
Object.defineProperty(ErrorEvent.prototype, 'message', { enumerable: true });
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Class representing a message event.
|
|
142
|
+
*
|
|
143
|
+
* @extends Event
|
|
144
|
+
*/
|
|
145
|
+
class MessageEvent extends Event {
|
|
146
|
+
/**
|
|
147
|
+
* Create a new `MessageEvent`.
|
|
148
|
+
*
|
|
149
|
+
* @param {String} type The name of the event
|
|
150
|
+
* @param {Object} [options] A dictionary object that allows for setting
|
|
151
|
+
* attributes via object members of the same name
|
|
152
|
+
* @param {*} [options.data=null] The message content
|
|
153
|
+
*/
|
|
154
|
+
constructor(type, options = {}) {
|
|
155
|
+
super(type);
|
|
156
|
+
|
|
157
|
+
this[kData] = options.data === undefined ? null : options.data;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @type {*}
|
|
162
|
+
*/
|
|
163
|
+
get data() {
|
|
164
|
+
return this[kData];
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
Object.defineProperty(MessageEvent.prototype, 'data', { enumerable: true });
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* This provides methods for emulating the `EventTarget` interface. It's not
|
|
172
|
+
* meant to be used directly.
|
|
173
|
+
*
|
|
174
|
+
* @mixin
|
|
175
|
+
*/
|
|
176
|
+
const EventTarget = {
|
|
177
|
+
/**
|
|
178
|
+
* Register an event listener.
|
|
179
|
+
*
|
|
180
|
+
* @param {String} type A string representing the event type to listen for
|
|
181
|
+
* @param {(Function|Object)} handler The listener to add
|
|
182
|
+
* @param {Object} [options] An options object specifies characteristics about
|
|
183
|
+
* the event listener
|
|
184
|
+
* @param {Boolean} [options.once=false] A `Boolean` indicating that the
|
|
185
|
+
* listener should be invoked at most once after being added. If `true`,
|
|
186
|
+
* the listener would be automatically removed when invoked.
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
189
|
+
addEventListener(type, handler, options = {}) {
|
|
190
|
+
for (const listener of this.listeners(type)) {
|
|
191
|
+
if (
|
|
192
|
+
!options[kForOnEventAttribute] &&
|
|
193
|
+
listener[kListener] === handler &&
|
|
194
|
+
!listener[kForOnEventAttribute]
|
|
195
|
+
) {
|
|
196
|
+
return;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
let wrapper;
|
|
201
|
+
|
|
202
|
+
if (type === 'message') {
|
|
203
|
+
wrapper = function onMessage(data, isBinary) {
|
|
204
|
+
const event = new MessageEvent('message', {
|
|
205
|
+
data: isBinary ? data : data.toString()
|
|
206
|
+
});
|
|
207
|
+
|
|
208
|
+
event[kTarget] = this;
|
|
209
|
+
callListener(handler, this, event);
|
|
210
|
+
};
|
|
211
|
+
} else if (type === 'close') {
|
|
212
|
+
wrapper = function onClose(code, message) {
|
|
213
|
+
const event = new CloseEvent('close', {
|
|
214
|
+
code,
|
|
215
|
+
reason: message.toString(),
|
|
216
|
+
wasClean: this._closeFrameReceived && this._closeFrameSent
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
event[kTarget] = this;
|
|
220
|
+
callListener(handler, this, event);
|
|
221
|
+
};
|
|
222
|
+
} else if (type === 'error') {
|
|
223
|
+
wrapper = function onError(error) {
|
|
224
|
+
const event = new ErrorEvent('error', {
|
|
225
|
+
error,
|
|
226
|
+
message: error.message
|
|
227
|
+
});
|
|
228
|
+
|
|
229
|
+
event[kTarget] = this;
|
|
230
|
+
callListener(handler, this, event);
|
|
231
|
+
};
|
|
232
|
+
} else if (type === 'open') {
|
|
233
|
+
wrapper = function onOpen() {
|
|
234
|
+
const event = new Event('open');
|
|
235
|
+
|
|
236
|
+
event[kTarget] = this;
|
|
237
|
+
callListener(handler, this, event);
|
|
238
|
+
};
|
|
239
|
+
} else {
|
|
240
|
+
return;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
wrapper[kForOnEventAttribute] = !!options[kForOnEventAttribute];
|
|
244
|
+
wrapper[kListener] = handler;
|
|
245
|
+
|
|
246
|
+
if (options.once) {
|
|
247
|
+
this.once(type, wrapper);
|
|
248
|
+
} else {
|
|
249
|
+
this.on(type, wrapper);
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* Remove an event listener.
|
|
255
|
+
*
|
|
256
|
+
* @param {String} type A string representing the event type to remove
|
|
257
|
+
* @param {(Function|Object)} handler The listener to remove
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
removeEventListener(type, handler) {
|
|
261
|
+
for (const listener of this.listeners(type)) {
|
|
262
|
+
if (listener[kListener] === handler && !listener[kForOnEventAttribute]) {
|
|
263
|
+
this.removeListener(type, listener);
|
|
264
|
+
break;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
};
|
|
269
|
+
|
|
270
|
+
module.exports = {
|
|
271
|
+
CloseEvent,
|
|
272
|
+
ErrorEvent,
|
|
273
|
+
Event,
|
|
274
|
+
EventTarget,
|
|
275
|
+
MessageEvent
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Call an event listener
|
|
280
|
+
*
|
|
281
|
+
* @param {(Function|Object)} listener The listener to call
|
|
282
|
+
* @param {*} thisArg The value to use as `this`` when calling the listener
|
|
283
|
+
* @param {Event} event The event to pass to the listener
|
|
284
|
+
* @private
|
|
285
|
+
*/
|
|
286
|
+
function callListener(listener, thisArg, event) {
|
|
287
|
+
if (typeof listener === 'object' && listener.handleEvent) {
|
|
288
|
+
listener.handleEvent.call(listener, event);
|
|
289
|
+
} else {
|
|
290
|
+
listener.call(thisArg, event);
|
|
291
|
+
}
|
|
292
|
+
}
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { tokenChars } = require('./validation');
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Adds an offer to the map of extension offers or a parameter to the map of
|
|
7
|
+
* parameters.
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} dest The map of extension offers or parameters
|
|
10
|
+
* @param {String} name The extension or parameter name
|
|
11
|
+
* @param {(Object|Boolean|String)} elem The extension parameters or the
|
|
12
|
+
* parameter value
|
|
13
|
+
* @private
|
|
14
|
+
*/
|
|
15
|
+
function push(dest, name, elem) {
|
|
16
|
+
if (dest[name] === undefined) dest[name] = [elem];
|
|
17
|
+
else dest[name].push(elem);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Parses the `Sec-WebSocket-Extensions` header into an object.
|
|
22
|
+
*
|
|
23
|
+
* @param {String} header The field value of the header
|
|
24
|
+
* @return {Object} The parsed object
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
function parse(header) {
|
|
28
|
+
const offers = Object.create(null);
|
|
29
|
+
let params = Object.create(null);
|
|
30
|
+
let mustUnescape = false;
|
|
31
|
+
let isEscaping = false;
|
|
32
|
+
let inQuotes = false;
|
|
33
|
+
let extensionName;
|
|
34
|
+
let paramName;
|
|
35
|
+
let start = -1;
|
|
36
|
+
let code = -1;
|
|
37
|
+
let end = -1;
|
|
38
|
+
let i = 0;
|
|
39
|
+
|
|
40
|
+
for (; i < header.length; i++) {
|
|
41
|
+
code = header.charCodeAt(i);
|
|
42
|
+
|
|
43
|
+
if (extensionName === undefined) {
|
|
44
|
+
if (end === -1 && tokenChars[code] === 1) {
|
|
45
|
+
if (start === -1) start = i;
|
|
46
|
+
} else if (
|
|
47
|
+
i !== 0 &&
|
|
48
|
+
(code === 0x20 /* ' ' */ || code === 0x09) /* '\t' */
|
|
49
|
+
) {
|
|
50
|
+
if (end === -1 && start !== -1) end = i;
|
|
51
|
+
} else if (code === 0x3b /* ';' */ || code === 0x2c /* ',' */) {
|
|
52
|
+
if (start === -1) {
|
|
53
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (end === -1) end = i;
|
|
57
|
+
const name = header.slice(start, end);
|
|
58
|
+
if (code === 0x2c) {
|
|
59
|
+
push(offers, name, params);
|
|
60
|
+
params = Object.create(null);
|
|
61
|
+
} else {
|
|
62
|
+
extensionName = name;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
start = end = -1;
|
|
66
|
+
} else {
|
|
67
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
68
|
+
}
|
|
69
|
+
} else if (paramName === undefined) {
|
|
70
|
+
if (end === -1 && tokenChars[code] === 1) {
|
|
71
|
+
if (start === -1) start = i;
|
|
72
|
+
} else if (code === 0x20 || code === 0x09) {
|
|
73
|
+
if (end === -1 && start !== -1) end = i;
|
|
74
|
+
} else if (code === 0x3b || code === 0x2c) {
|
|
75
|
+
if (start === -1) {
|
|
76
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (end === -1) end = i;
|
|
80
|
+
push(params, header.slice(start, end), true);
|
|
81
|
+
if (code === 0x2c) {
|
|
82
|
+
push(offers, extensionName, params);
|
|
83
|
+
params = Object.create(null);
|
|
84
|
+
extensionName = undefined;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
start = end = -1;
|
|
88
|
+
} else if (code === 0x3d /* '=' */ && start !== -1 && end === -1) {
|
|
89
|
+
paramName = header.slice(start, i);
|
|
90
|
+
start = end = -1;
|
|
91
|
+
} else {
|
|
92
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
93
|
+
}
|
|
94
|
+
} else {
|
|
95
|
+
//
|
|
96
|
+
// The value of a quoted-string after unescaping must conform to the
|
|
97
|
+
// token ABNF, so only token characters are valid.
|
|
98
|
+
// Ref: https://tools.ietf.org/html/rfc6455#section-9.1
|
|
99
|
+
//
|
|
100
|
+
if (isEscaping) {
|
|
101
|
+
if (tokenChars[code] !== 1) {
|
|
102
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
103
|
+
}
|
|
104
|
+
if (start === -1) start = i;
|
|
105
|
+
else if (!mustUnescape) mustUnescape = true;
|
|
106
|
+
isEscaping = false;
|
|
107
|
+
} else if (inQuotes) {
|
|
108
|
+
if (tokenChars[code] === 1) {
|
|
109
|
+
if (start === -1) start = i;
|
|
110
|
+
} else if (code === 0x22 /* '"' */ && start !== -1) {
|
|
111
|
+
inQuotes = false;
|
|
112
|
+
end = i;
|
|
113
|
+
} else if (code === 0x5c /* '\' */) {
|
|
114
|
+
isEscaping = true;
|
|
115
|
+
} else {
|
|
116
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
117
|
+
}
|
|
118
|
+
} else if (code === 0x22 && header.charCodeAt(i - 1) === 0x3d) {
|
|
119
|
+
inQuotes = true;
|
|
120
|
+
} else if (end === -1 && tokenChars[code] === 1) {
|
|
121
|
+
if (start === -1) start = i;
|
|
122
|
+
} else if (start !== -1 && (code === 0x20 || code === 0x09)) {
|
|
123
|
+
if (end === -1) end = i;
|
|
124
|
+
} else if (code === 0x3b || code === 0x2c) {
|
|
125
|
+
if (start === -1) {
|
|
126
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
if (end === -1) end = i;
|
|
130
|
+
let value = header.slice(start, end);
|
|
131
|
+
if (mustUnescape) {
|
|
132
|
+
value = value.replace(/\\/g, '');
|
|
133
|
+
mustUnescape = false;
|
|
134
|
+
}
|
|
135
|
+
push(params, paramName, value);
|
|
136
|
+
if (code === 0x2c) {
|
|
137
|
+
push(offers, extensionName, params);
|
|
138
|
+
params = Object.create(null);
|
|
139
|
+
extensionName = undefined;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
paramName = undefined;
|
|
143
|
+
start = end = -1;
|
|
144
|
+
} else {
|
|
145
|
+
throw new SyntaxError(`Unexpected character at index ${i}`);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
if (start === -1 || inQuotes || code === 0x20 || code === 0x09) {
|
|
151
|
+
throw new SyntaxError('Unexpected end of input');
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
if (end === -1) end = i;
|
|
155
|
+
const token = header.slice(start, end);
|
|
156
|
+
if (extensionName === undefined) {
|
|
157
|
+
push(offers, token, params);
|
|
158
|
+
} else {
|
|
159
|
+
if (paramName === undefined) {
|
|
160
|
+
push(params, token, true);
|
|
161
|
+
} else if (mustUnescape) {
|
|
162
|
+
push(params, paramName, token.replace(/\\/g, ''));
|
|
163
|
+
} else {
|
|
164
|
+
push(params, paramName, token);
|
|
165
|
+
}
|
|
166
|
+
push(offers, extensionName, params);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
return offers;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Builds the `Sec-WebSocket-Extensions` header field value.
|
|
174
|
+
*
|
|
175
|
+
* @param {Object} extensions The map of extensions and parameters to format
|
|
176
|
+
* @return {String} A string representing the given object
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
function format(extensions) {
|
|
180
|
+
return Object.keys(extensions)
|
|
181
|
+
.map((extension) => {
|
|
182
|
+
let configurations = extensions[extension];
|
|
183
|
+
if (!Array.isArray(configurations)) configurations = [configurations];
|
|
184
|
+
return configurations
|
|
185
|
+
.map((params) => {
|
|
186
|
+
return [extension]
|
|
187
|
+
.concat(
|
|
188
|
+
Object.keys(params).map((k) => {
|
|
189
|
+
let values = params[k];
|
|
190
|
+
if (!Array.isArray(values)) values = [values];
|
|
191
|
+
return values
|
|
192
|
+
.map((v) => (v === true ? k : `${k}=${v}`))
|
|
193
|
+
.join('; ');
|
|
194
|
+
})
|
|
195
|
+
)
|
|
196
|
+
.join('; ');
|
|
197
|
+
})
|
|
198
|
+
.join(', ');
|
|
199
|
+
})
|
|
200
|
+
.join(', ');
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
module.exports = { format, parse };
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const kDone = Symbol('kDone');
|
|
4
|
+
const kRun = Symbol('kRun');
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* A very simple job queue with adjustable concurrency. Adapted from
|
|
8
|
+
* https://github.com/STRML/async-limiter
|
|
9
|
+
*/
|
|
10
|
+
class Limiter {
|
|
11
|
+
/**
|
|
12
|
+
* Creates a new `Limiter`.
|
|
13
|
+
*
|
|
14
|
+
* @param {Number} [concurrency=Infinity] The maximum number of jobs allowed
|
|
15
|
+
* to run concurrently
|
|
16
|
+
*/
|
|
17
|
+
constructor(concurrency) {
|
|
18
|
+
this[kDone] = () => {
|
|
19
|
+
this.pending--;
|
|
20
|
+
this[kRun]();
|
|
21
|
+
};
|
|
22
|
+
this.concurrency = concurrency || Infinity;
|
|
23
|
+
this.jobs = [];
|
|
24
|
+
this.pending = 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Adds a job to the queue.
|
|
29
|
+
*
|
|
30
|
+
* @param {Function} job The job to run
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
add(job) {
|
|
34
|
+
this.jobs.push(job);
|
|
35
|
+
this[kRun]();
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Removes a job from the queue and runs it if possible.
|
|
40
|
+
*
|
|
41
|
+
* @private
|
|
42
|
+
*/
|
|
43
|
+
[kRun]() {
|
|
44
|
+
if (this.pending === this.concurrency) return;
|
|
45
|
+
|
|
46
|
+
if (this.jobs.length) {
|
|
47
|
+
const job = this.jobs.shift();
|
|
48
|
+
|
|
49
|
+
this.pending++;
|
|
50
|
+
job(this[kDone]);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
module.exports = Limiter;
|