Retrieve the common prefix across multiple strings
npm install common-prefixRetrieve the common prefix across multiple strings.

For example:
`` javascript
var common = require('common-prefix')
common([
'hello world'
, 'hello again'
, 'hello once again'
]) === 'hello '
``
MIT. See LICENSE.md for details.