mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-08 10:12:37 -08:00
14 lines
175 B
JavaScript
14 lines
175 B
JavaScript
/*\
|
|
title: absolute/submodule/a.js
|
|
type: application/javascript
|
|
module-type: library
|
|
|
|
Absolute require test
|
|
|
|
\*/
|
|
|
|
|
|
exports.foo = function () {
|
|
return require('../b');
|
|
};
|
|
|