view doc/html/api/module/Irccd/index.md @ 0:1158cffe5a5e

Initial import
author David Demelier <markand@malikania.fr>
date Mon, 08 Feb 2016 16:43:14 +0100
parents
children 070a1ece2af6
line wrap: on
line source

---
module: Irccd
---

## Usage

Contains general irccd variables and functions.

## Constants

The following properties are defined:

  - **version**: (object)
    - **major**: (int) the major irccd version,
    - **minor**: (int) the minor irccd version,
    - **patch**: (int) the patch irccd version.

## Example

````javascript
var Logger = Irccd.Logger;

function onLoad()
	Logger.info("Major: " + Irccd.version.major);
	Logger.info("Minor: " + Irccd.version.minor);
	Logger.info("Patch: " + Irccd.version.patch);
end
````