Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/repl/lib/welcome_text.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@
// MAIN //

var MSG = [
' _ _ _ _ _',
' ___| |_ __| | (_) |__ | A better REPL for JavaScript and Node.js.',
'/ __| __/ _` | | | \'_ \\ |',
'\\__ \\ || (_| | | | |_) | | For more info, see the source repository:',
'|___/\\__\\__,_|_|_|_.__/ | https://github.com/stdlib-js/stdlib',
'',
'A better REPL for JavaScript and Node.js.',

// TODO: include platform, copyright, version (see Julia, R, and Python for inspiration)
'',
Expand All @@ -39,10 +43,6 @@ var MSG = [
' license() Print license information.',
' copyright() Print copyright information.',
'',
'For more info about stdlib, see the source repository:',
'',
' https://github.com/stdlib-js/stdlib',
'',
''
].join( '\n' );

Expand Down