◐ Shell
clean mode source ↗

doc: rename invalid `function` parameter · nodejs/node@dc12a25

@@ -321,7 +321,7 @@ This method allows one or more SQL statements to be executed without returning

321321

any results. This method is useful when executing SQL statements read from a

322322

file. This method is a wrapper around [`sqlite3_exec()`][].

323323324-

### `database.function(name[, options], function)`

324+

### `database.function(name[, options], fn)`

325325326326

<!-- YAML

327327

added:

@@ -343,10 +343,10 @@ added:

343343

arguments (between zero and [`SQLITE_MAX_FUNCTION_ARG`][]). If `false`,

344344

`function` must be invoked with exactly `function.length` arguments.

345345

**Default:** `false`.

346-

* `function` {Function} The JavaScript function to call when the SQLite

347-

function is invoked. The return value of this function should be a valid

348-

SQLite data type: see [Type conversion between JavaScript and SQLite][].

349-

The result defaults to `NULL` if the return value is `undefined`.

346+

* `fn` {Function} The JavaScript function to call when the SQLite function is

347+

invoked. The return value of this function should be a valid SQLite data type:

348+

see [Type conversion between JavaScript and SQLite][]. The result defaults to

349+

`NULL` if the return value is `undefined`.

350350351351

This method is used to create SQLite user-defined functions. This method is a

352352

wrapper around [`sqlite3_create_function_v2()`][].