new API page in docs
This commit is contained in:
8
docs/.api_helpers.js
Normal file
8
docs/.api_helpers.js
Normal file
@@ -0,0 +1,8 @@
|
||||
exports.if_eq = function(a, b, opts) {
|
||||
if (a == b) {
|
||||
return opts.fn(this);
|
||||
} else {
|
||||
return opts.inverse(this);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user