gt.js
375 Bytes
/**
* Created by LiuChuanYang on 2017/01/19.
*/
'use strict';
module.exports = function(v1, v2, options) {
var ret = v1 > v2;
if (options.fn) {
if (ret) {
return options.fn(this);
} else {
// 不满足条件执行{{else}}部分
return options.inverse(this);
}
} else {
return ret;
}
};