mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
51739e3fd2
as per #2005 from @Evolena
27 lines
408 B
JavaScript
27 lines
408 B
JavaScript
/*\
|
|
title: $:/editions/tw5.com/if-macro.js
|
|
type: application/javascript
|
|
module-type: macro
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.name = ".if";
|
|
|
|
exports.params = [
|
|
{ name: "cond" },
|
|
{ name: "then" },
|
|
{ name: "else" }
|
|
];
|
|
|
|
exports.run = function(cond, then, elze) {
|
|
then = then || "";
|
|
elze = elze || "";
|
|
return cond ? then : elze;
|
|
};
|
|
|
|
})();
|