finds all common substrings between two strings
npm install commonsubstrings
npm i commonsubstrings --save
``
Usage
``
var css = require('commonsubstrings')
console.log(css('may the force be with you', 'may the sauce be with you'))
//result: ['ce be with you', 'may the']
```