1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-06-20 23:44:07 +00:00
2025-03-16 16:56:59 +01:00

26 lines
322 B
JavaScript

/*\
title: $:/core/modules/macros/version.js
type: application/javascript
module-type: macro
Macro to return the TiddlyWiki core version number
\*/
"use strict";
/*
Information about this macro
*/
exports.name = "version";
exports.params = [];
/*
Run the macro
*/
exports.run = function() {
return $tw.version;
};