Package implements longest repeated substring for finding the longest repeated string within a text body
npm install js-longest-repeated-substring 
Run the following npm command to install
``bash`
npm install js-longest-repeated-substring
To sort an array "a" using any of the sorting algorithms:
`javascript
var jslrs = require("js-longest-repeated-substring");
var text = "ATCGATCGA$";
console.log(jslrs.lrs(text)); // display ATCGA
``