deno.com

interface FunctionOptions

Properties #

#deterministic: boolean | undefined
optional

If true, the SQLITE_DETERMINISTIC flag is set on the created function.

#directOnly: boolean | undefined
optional

If true, the SQLITE_DIRECTONLY flag is set on the created function.

#useBigIntArguments: boolean | undefined
optional

If true, integer arguments to function are converted to BigInts. If false, integer arguments are passed as JavaScript numbers.

#varargs: boolean | undefined
optional

If true, function can accept a variable number of arguments. If false, function must be invoked with exactly function.length arguments.