comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:1158cffe5a5e
1 ---
2 module: Irccd
3 ---
4
5 ## Usage
6
7 Contains general irccd variables and functions.
8
9 ## Constants
10
11 The following properties are defined:
12
13 - **version**: (object)
14 - **major**: (int) the major irccd version,
15 - **minor**: (int) the minor irccd version,
16 - **patch**: (int) the patch irccd version.
17
18 ## Example
19
20 ````javascript
21 var Logger = Irccd.Logger;
22
23 function onLoad()
24 Logger.info("Major: " + Irccd.version.major);
25 Logger.info("Minor: " + Irccd.version.minor);
26 Logger.info("Patch: " + Irccd.version.patch);
27 end
28 ````