web-apps/vendor/requirejs/tests/plugins/textDepend/textDepend.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

8 lines
153 B
JavaScript

define(['text!test.txt'], function (text) {
return {
load: function (name, req, load, config) {
load(text);
}
};
});