Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bubkoo committed Apr 24, 2016
1 parent 9311626 commit 8f157ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use strict';

var clamp = require('clamp');
var randomChar = require('random-char');
var randomNatural = require('random-natural');
var randomSyllable = require('random-syllable');

Expand All @@ -26,7 +25,7 @@ module.exports = function (min, max) {
var result = '';

while (result.length < length) {
result += randomChar('lower');
result += randomSyllable();
}

result = result.substring(0, length);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "random-lorem",
"version": "1.0.2",
"version": "1.0.3",
"description": "Return a semi-pronounceable random (nonsense) word.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 8f157ef

Please sign in to comment.