X Tutup
The Wayback Machine - https://web.archive.org/web/20201105145228/https://github.com/sovpro/split-randomly
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

Split Randomly

Split a string randomly into a given or random count of substrings.

Build status for Node.js 4.x and newer

Split randomly into a given count of substrings

var hello_str = 'Hello, World!'
var substring_count = 5
var substrings = splitRandomly (hello_string, substring_count)

Split randomly into a random count of substrings

var hello_str = 'Hello, World!'
var substrings = splitRandomly (hello_string)
You can’t perform that action at this time.
X Tutup