Truncate
Truncate text and keeps urls safe.
NPM
Install the module with: npm install truncate
Usage
String.truncate("1234 http://google.com hey :)", 2) === "12..."
> truncate = require('truncate');
> truncate("1234 http://google.com hey :)", 4);
"1234..."
> truncate("1234 http://google.com hey :)", 4, {ellipsis:null});
"1234"
> truncate("1234 http://google.com hey :)", 6);
"1234 http://google.com..."
> truncate("1234 http://google.com hey :)", 100);
"1234 http://google.com hey :)"
Donate
Donate Bitcoins
License
Copyright (c) 2014 Francois-Guillaume Ribreau
Licensed under the MIT license.