UNPKG

@redpanda-data/docs-extensions-and-macros

Version:

Antora extensions and macros developed for Redpanda documentation.

9 lines (8 loc) 187 B
/** * Handlebars helper for logical NOT * @param {*} value - Value to negate * @returns {boolean} True if value is falsy */ module.exports = function not(value) { return !value; };