Skip to content

$isNodeExists

$isNodeExists will return either true or false depending on if the node is exists.

Usage

$isNodeExists[name]

Parameters

FieldTypeDescriptionRequired
namestringNode nametrue

Example(s)

This will return either true or false depending on if the node is exists

1
client.command({
2
name: "isnodeexists",
3
code: `
4
$isNodeExists
5
`
6
});