UNPKG

microbejs

Version:

microbe.js - A modular JS library for DOM manipulation, and more

38 lines (31 loc) 735 B
/** * ## Microbe * * Builds the Microbe object * * @author Mouse Braun <mouse@knoblau.ch> * @author Nicolas Brugneaux <nicolas.brugneaux@gmail.com> * * @package Microbe */ /*jshint globalstrict: true*/ 'use strict'; var _type = '[object MicrobeRoot]'; var _version = require( './version' ) + '-tool'; var Microbe = { core : {} }; require( './modules/tools' )( Microbe ); require( './modules/pageStyles' )( Microbe ); require( './modules/http' )( Microbe ); Object.defineProperty( Microbe, 'version', { get : function() { return _version; } } ); Object.defineProperty( Microbe, 'type', { get : function() { return _type; } } ); module.exports = Microbe;