From c63b47fc2946b5953db135d964daf70c173a6328 Mon Sep 17 00:00:00 2001 From: Rob Skillington Date: Thu, 12 Dec 2013 13:24:19 -0800 Subject: [PATCH] Export from module functions on getting doc strings and arguments as string arrays --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index 95d9065..3264762 100644 --- a/index.js +++ b/index.js @@ -61,6 +61,9 @@ function doc(source) { '\n' ].join('')) } + exports.doc = doc +exports.docAsString = extractDocs +exports.docArgsAsString = extractArgs });