UNPKG

obelisk-browserify

Version:

Browserify-compatible fork of obelisk.js, hopefully temporary

33 lines (26 loc) 484 B
/*global window:true*/ /* * obelisk */ (function (window) { "use strict"; /** * Static class holding library specific information * the library. * @class obelisk **/ var obelisk = {}; /** * @property version * @type String * @static **/ obelisk.version = '1.0.4'; /** * @property author * @type String * @static **/ obelisk.author = 'max huang'; window.obelisk = obelisk; }(window));