Skip to content

Commit b1be6f3

Browse files
committed
Add main
1 parent 101edfc commit b1be6f3

File tree

1 file changed

+24
-0
lines changed
  • lib/node_modules/@stdlib/plot/lib

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
'use strict';
2+
3+
/**
4+
* Plot.
5+
*
6+
* @module @stdlib/plot
7+
*
8+
* @example
9+
* var plot = require( '@stdlib/plot' );
10+
*
11+
* var x = [ 1, 2, 3 ];
12+
* var y = [ 1, 0, 1 ];
13+
*
14+
* var plt = plot( [ x ], [ y ] );
15+
*/
16+
17+
// MODULES //
18+
19+
var plot = require( '@stdlib/plot/ctor' );
20+
21+
22+
// EXPORTS //
23+
24+
module.exports = plot;

0 commit comments

Comments
 (0)