UNPKG

flyku

Version:

Flyku is an automated, modular development framework. The goal is to reduce duplication of work in the front-end development process, so that you pay more attention to the program itself.

15 lines (14 loc) 297 B
/** * @date 16-12-2016 * @describe: * @author: flyku * @version: 1.0.0 */ define(function(require, exports) { var $ = require('jquery'); var global = require('global'); var modB = require('./ui/moduleTEST/index'); $(function() { modB.init(); }); });