jsdoctest icon indicating copy to clipboard operation
jsdoctest copied to clipboard

Add support for multiline results #35

Open Eoksni opened this issue 5 years ago • 1 comments

Closes #35.

Example usage:

/**
 * @example
 *   subtract(1, 2)
 *   // => {
 *   // =>   normal: -1,
 *   // =>   reverse: 1
 *   // => }
 */

 function subtract(x, y) {
  return {
    normal: x - y,
    reverse: y - x
  };
}

Eoksni avatar Jun 26 '19 15:06 Eoksni

Coverage Status

Coverage remained the same at 76.963% when pulling 2b57ab9af0249094ead35ab3daafc1b1315c0943 on Eoksni:develop into ccd6cdbff8a4db98d20da8ac1868558a45913005 on yamadapc:master.

coveralls avatar Jun 26 '19 15:06 coveralls