eoo
Version:
A powerful Javascript Class Factory (Object oriented)
24 lines (23 loc) • 567 B
JavaScript
/**
* @file const 通用常量表
* @author exodia(d_xinxin@163.com)
*/
(function (define) {
define(
function () {
return {
NAME: '__eooName__',
OWNER: '__eooOwner__',
INTERNAL_MEMBER: '__eooInternalMembers__',
META: '__eooMeta__',
PRIVATE_STORE: '__eooPrivateStore__'
};
}
);
})(
typeof define === 'function' && define.amd
? define
: function (factory) {
module.exports = factory(require);
}
);