docstrings
v0.2.1
Published
docstrings in javascript
Downloads
5
Maintainers
Readme
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 foo
API
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 docstrings
Acknowledgments
docstrings was inspired by clojure's approach to documenting functions.
License
ISC