isY.js 248 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * 判断值是否是'Y' * @author: xuqi<qi.xu@yoho.cn> * @date: 2016/7/27 */ module.exports = function(value, options) { if (value === 'Y') { return options.fn(this); } else { return options.inverse(this); } };