mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
16 lines
170 B
JavaScript
16 lines
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');
|
||
|
|
||
|
|