mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 18:16:18 +00:00
15 lines
175 B
JavaScript
15 lines
175 B
JavaScript
|
/*\
|
||
|
title: absolute/submodule/a.js
|
||
|
type: application/javascript
|
||
|
module-type: library
|
||
|
|
||
|
Absolute require test
|
||
|
|
||
|
\*/
|
||
|
|
||
|
|
||
|
exports.foo = function () {
|
||
|
return require('../b');
|
||
|
};
|
||
|
|