Skip to content

$isNodeExists

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

Usage

$isNodeExists[name]

Parameters

Field Type Description Required
name string Node name true

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
});