$k. Script

An element that can be added to a folder

Extends

Methods

deregister()

Deregisters the element. The id will be undefined afterwards. Equivalent to setId(undefined)

See
  • setId

eval() → {any}

Evaluates the script. Equivalent to eval(source())

Version
  • Experimental feature, might be removed at any time
Since
  • 5.4.2
Returns:

The return value of the evaluated script

Type: 
any

id() → {string|undefined}

Returns the registered ID, or undefined if not registered.

Inherited From
Returns:
Type: 
string | undefined

module() → {object}

Returns the module exports of the script

Version
  • Experimental feature, might be removed at any time
Since
  • 5.4.2
Throws:

If this script is not registered

Type
$k.exception.RuntimeError
Returns:
Type: 
object

name() → {string}

Returns the name of the script

Since
  • 5.4.2
Returns:
Type: 
string

parentFolders() → {Array.<$k.Folder>}

Returns the folders that contain this element

Returns:
Type: 
Array.<$k.Folder>

registryType() → {string}

Returns the name of the registry that contains elements of this type

Returns:
Type: 
string

setId(id, replaceScriptReferencesopt)

Registers the element with the given ID. If the element has already been registered, the current ID will be changed to the new ID. If the given ID is undefined or null, the element will be deregistered.

Parameters:
NameTypeAttributesDefaultDescription
idstring | null

The ID to set

replaceScriptReferencesboolean<optional>
false

True if ID references in scripts should be replaced. Only done when the old and the new ID is not undefined.

source() → {string}

Returns the script source code

Version
  • Experimental feature, might be removed at any time
Since
  • 5.4.2
Returns:
Type: 
string