Skip to main content
Module

x/denops_std/function/mod.ts>join

📚 Standard module for denops.vim
Go to Latest
function join
import { join } from "https://deno.land/x/denops_std@v3.9.1/function/mod.ts";

Join the items in {list} together into one String. When {sep} is specified it is put in between the items. If {sep} is omitted a single space is used. Note that {sep} is not added at the end. You might want to add it there too: let lines = join(mylist, "\n") . "\n" String items are used as-is. |Lists| and |Dictionaries| are converted into a string like with |string()|. The opposite function is |split()|. Can also be used as a |method|: mylist->join()

Parameters

denops: Denops
list: unknown
optional
sep: unknown

Returns

Promise<unknown>