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