web-apps/vendor/requirejs/tests/plugins/textDepend/textDepend.js

8 lines
153 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
define(['text!test.txt'], function (text) {
return {
load: function (name, req, load, config) {
load(text);
}
};
});