mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
15 lines
138 B
JavaScript
15 lines
138 B
JavaScript
/*\
|
|
title: a/b/c/d.js
|
|
type: application/javascript
|
|
module-type: library
|
|
|
|
Nested test
|
|
|
|
\*/
|
|
|
|
exports.foo = function () {
|
|
return 1;
|
|
};
|
|
|
|
|