0.2.1 • Published 9 years ago
docstrings v0.2.1
docstrings
Interpret a string literal at the beginning of a function as its documentation.
Usage
var doc = require('docstrings')
function foo () {
"returns foo"
return 'foo'
}
console.log(doc(foo))This will output
returns fooAPI
var doc = require('docstrings')doc(func)
Returns a string matching the string literal at the beginning of a function.
Matches "" and '' literals as well as template strings.
Install
With npm installed, run
$ npm install docstringsAcknowledgments
docstrings was inspired by clojure's approach to documenting functions.
License
ISC