blob: ed5ac68bf35bb086e806f461b3422e990dd91536 (
plain)
1
2
3
4
|
module.exports = function (a, b, options) {
var notEq = a && b && ((a.project !== b.project) || (a.subProject !== b.subProject));
return notEq ? options.inverse(this) : options.fn(this);
};
|