12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
|
(function() {
|
||
|
|
||
|
define(function (require, exports, module) {
|
||
|
"use strict";
|
||
|
|
||
|
exports.load = function (name, req, onLoad, config) {
|
||
|
onLoad('', 'utf8');
|
||
|
};
|
||
|
});
|
||
|
|
||
|
})();
|