We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aedc408 commit 5221212Copy full SHA for 5221212
lib/node_modules/@stdlib/repl/scripts/browser.js
@@ -57,12 +57,9 @@ function help( alias ) {
57
* @private
58
*/
59
function ns() {
60
- var keys;
61
var i;
62
-
63
- keys = getKeys( DOCS );
64
- for ( i = 0; i < keys.length; i++ ) {
65
- console.log( keys[ i ] ); // eslint-disable-line no-console
+ for ( i = 0; i < NAMESPACE.length; i++ ) {
+ console.log( NAMESPACE[ i ].alias ); // eslint-disable-line no-console
66
}
67
} // end FUNCTION ns()
68
0 commit comments