mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-11 01:03:01 -07:00
15 lines
213 B
JavaScript
15 lines
213 B
JavaScript
/*\
|
|
title: $:/core/modules/macros/version.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
exports.name = "version";
|
|
|
|
exports.params = [];
|
|
|
|
exports.run = function() {
|
|
return $tw.version;
|
|
};
|