node-easel
Version:
node wrapper for EaselJS, utilizing node-canvas.
33 lines (27 loc) • 659 B
JavaScript
/**
* @module EaselJS
*/
this.createjs = this.createjs || {};
(function() {
"use strict";
/**
* Static class holding library specific information such as the version and buildDate of
* the library.
* @class EaselJS
**/
var s = createjs.EaselJS = createjs.EaselJS || {};
/**
* The version string for this release.
* @property version
* @type String
* @static
**/
s.version = /*version*/"0.7.0"; // injected by build process
/**
* The build date for this release in UTC format.
* @property buildDate
* @type String
* @static
**/
s.buildDate = /*date*/"Wed, 25 Sep 2013 17:09:35 GMT"; // injected by build process
})();