gitdagray/csv-to-sql-insert

Improving The Documentation to match current Scripts

Diwanshumidha opened this issue · 2 comments

I would like to improve the documentation for the app

What about using jsdoc format?
ex:
`/**

  • Represents a book.
  • @constructor
  • @param {string} title - The title of the book.
  • @param {string} author - The author of the book.
    */
    function Book(title, author) {
    }`
    source: JSDOC

Great Idea