You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
7
+
8
+
<sectionclass="intro">
9
+
10
+
</section>
11
+
12
+
<!-- /.intro -->
13
+
14
+
<!-- Package usage documentation. -->
15
+
16
+
<sectionclass="usage">
17
+
18
+
## Usage
19
+
20
+
```javascript
21
+
var help =require( '@stdlib/repl/help' );
22
+
```
23
+
24
+
#### help()
25
+
26
+
Returns an `object` containing REPL help texts.
27
+
28
+
```javascript
29
+
var o =help();
30
+
// returns {...}
31
+
```
32
+
33
+
</section>
34
+
35
+
<!-- /.usage -->
36
+
37
+
<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
38
+
39
+
<sectionclass="notes">
40
+
41
+
</section>
42
+
43
+
<!-- /.notes -->
44
+
45
+
<!-- Package usage examples. -->
46
+
47
+
<sectionclass="examples">
48
+
49
+
## Examples
50
+
51
+
<!-- TODO: better example -->
52
+
53
+
```javascript
54
+
var help =require( '@stdlib/repl/help' );
55
+
56
+
var o =help();
57
+
console.log( o );
58
+
// => {...}
59
+
```
60
+
61
+
</section>
62
+
63
+
<!-- /.examples -->
64
+
65
+
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
66
+
67
+
<sectionclass="references">
68
+
69
+
</section>
70
+
71
+
<!-- /.references -->
72
+
73
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
0 commit comments