UNPKG

quialaboriosam

Version:

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

26 lines (21 loc) 534 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 = '0.4.15-tool'; var Microbe = { get version() { return _version; }, get type() { return _type; } }; require( './modules/tools' )( Microbe ); require( './modules/pageStyles' )( Microbe ); module.exports = Microbe;