UNPKG

@ejazullah/smart-browser-automation

Version:

A smart AI-driven browser automation library and REST API server using MCP (Model Context Protocol) and LangChain for multi-step task execution. Includes both programmatic library usage and HTTP API server for remote automation.

18 lines (17 loc) 464 B
import { unsafeStringify } from './stringify.js'; import v1 from './v1.js'; import v1ToV6 from './v1ToV6.js'; function v6(options, buf, offset) { options ??= {}; offset ??= 0; let bytes = v1({ ...options, _v6: true }, new Uint8Array(16)); bytes = v1ToV6(bytes); if (buf) { for (let i = 0; i < 16; i++) { buf[offset + i] = bytes[i]; } return buf; } return unsafeStringify(bytes); } export default v6;