mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-01-01 11:39:02 +01:00
15 lines
159 B
JavaScript
15 lines
159 B
JavaScript
|
var version = (function() {
|
||
|
|
||
|
var current = 1.0;
|
||
|
|
||
|
var get = function() {
|
||
|
return current;
|
||
|
};
|
||
|
|
||
|
// exposed methods
|
||
|
return {
|
||
|
get: get
|
||
|
};
|
||
|
|
||
|
})();
|