Skip to content

Commit

Permalink
docs: generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Feb 19, 2021
1 parent bb9ec38 commit 90650a0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -571,8 +571,7 @@ import {
createStream
} from 'table';

import sample from 'lodash.sample';
import random from 'lodash.random';
import _ from 'lodash';

let config,
stream,
Expand Down Expand Up @@ -604,7 +603,7 @@ i = 0;
setInterval(() => {
let random;

random = sample('abcdefghijklmnopqrstuvwxyz',random(1, 30)).join('');
random = _.sample('abcdefghijklmnopqrstuvwxyz', _.random(1, 30)).join('');

stream.write([i++, new Date(), random]);
}, 500);
Expand Down

0 comments on commit 90650a0

Please sign in to comment.