UNPKG

dgeni-packages

Version:

A collection of dgeni packages for generating documentation from source code

6 lines 185 B
/** * Trim excess whitespace from the value */ module.exports = function trimWhitespaceTransform() { return (doc, tag, value) => typeof value === 'string' ? value.trim() : value; };