web-apps/vendor/requirejs/tests/paths/first.js/second.js

9 lines
184 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
define(['./first'], function () {
return function (id, parentRequire, loaded) {
loaded({
name: 'first',
secondName: 'second'
});
};
});