simplecsv
Version:
Fast and compact CSV parser for parsing CSV with CSV to JSON support.
70 lines (51 loc) • 1.75 kB
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: simplecsv.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: simplecsv.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* @copyright Copyright (c) 2015 All Rights Reserved.
* @author Baris Yuksel <baris@onehundredyearsofcode.com>
*
* Fast and compact CSV parser for parsing CSV with CSV to JSON support.
*
* @module
*/
exports = module.exports = {
/** A class for keeping csv data after it is parsed.
* @function
*/
csvdata : require ('./lib/csvdata.js'),
/** The csv parser class.
* @function
*/
csv : require('./lib/csv.js')
};
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-simplecsv.html">simplecsv</a></li></ul><h3>Classes</h3><ul><li><a href="csv.html">csv</a></li><li><a href="csvdata.html">csvdata</a></li><li><a href="private.html">private</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.2</a> on Fri Jul 17 2015 02:09:00 GMT-0400 (EDT)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>