kopia lustrzana https://github.com/miklobit/TiddlyWiki5
16 wiersze
170 B
JavaScript
16 wiersze
170 B
JavaScript
![]() |
/*\
|
||
|
title: cyclic/a.js
|
||
|
type: application/javascript
|
||
|
module-type: library
|
||
|
|
||
|
Cycle require test A
|
||
|
|
||
|
\*/
|
||
|
|
||
|
exports.a = function () {
|
||
|
return b;
|
||
|
};
|
||
|
var b = require('./b');
|
||
|
|
||
|
|