UNPKG

tiddlywiki-plugin-dev

Version:

[![](https://img.shields.io/badge/Join-TiddlyWiki_CN-blue)](https://github.com/tiddly-gittly)

12 lines (11 loc) 233 B
const buildListenArgs = (options) => { const { wikiPath, port, lan } = options; const args = [wikiPath, "--listen", `port=${port}`]; if (lan) { args.push("host=0.0.0.0"); } return args; }; export { buildListenArgs };