Liking cljdoc? Tell your friends :D

dots.node.fs.stat-sync

Synchronous stat(2) - Get file status.

Synchronous stat(2) - Get file status.
raw docstring

applycljs

(apply this-arg)
(apply this-arg arg-array)

Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.

Parameters:

  • this-arg: any - The object to be used as the this object.
  • arg-array: any - A set of arguments to be passed to the function.

Returns: any

Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.

**Parameters:**
- `this-arg`: `any` - The object to be used as the this object.
- `arg-array`: `any` - A set of arguments to be passed to the function.

**Returns:** `any`
sourceraw docstring

argumentscljs

(arguments)
source

bindcljs

(bind this-arg & arg-array)

For a given function, creates a bound function that has the same body as the original function. The this object of the bound function is associated with the specified object, and has the specified initial parameters.

Parameters:

  • this-arg: any - An object to which the this keyword can refer inside the new function.
  • arg-array: any[] - A list of arguments to be passed to the new function.

Returns: any

For a given function, creates a bound function that has the same body as the original function.
The this object of the bound function is associated with the specified object, and has the specified initial parameters.

**Parameters:**
- `this-arg`: `any` - An object to which the this keyword can refer inside the new function.
- `arg-array`: `any[]` - A list of arguments to be passed to the new function.

**Returns:** `any`
sourceraw docstring

callcljs

(call this-arg & arg-array)

Calls a method of an object, substituting another object for the current object.

Parameters:

  • this-arg: any - The object to be used as the current object.
  • arg-array: any[] - A list of arguments to be passed to the method.

Returns: any

Calls a method of an object, substituting another object for the current object.

**Parameters:**
- `this-arg`: `any` - The object to be used as the current object.
- `arg-array`: `any[]` - A list of arguments to be passed to the method.

**Returns:** `any`
sourceraw docstring

callercljs

(caller)
source

lengthcljs

(length)
source

namecljs

(name)

Returns the name of the function. Function names are read-only and can not be changed.

Returns the name of the function. Function names are read-only and can not be changed.
sourceraw docstring

prototypecljs

(prototype)
source

set-arguments!cljs

(set-arguments! value)
source

set-caller!cljs

(set-caller! value)
source

set-prototype!cljs

(set-prototype! value)
source

to-stringcljs

(to-string)

Returns a string representation of a function.

Returns: string

Returns a string representation of a function.

**Returns:** `string`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close