Calculates a list of common substrings between two strings
Installation
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']