Files
DocumentServer-v-9.2.0/web-apps/vendor/requirejs/tests/circular/414/C.js
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

21 lines
293 B
JavaScript

define(
[
"exports",
"./MyClass",
"./A",
"./B"
],
function (exports, MyClass, A, B) {
exports.name = "C";
exports.say = function(){
return [MyClass.name, A.name, B.name, exports.name].join(',');
};
}
);