| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/gavin/workspace/happymandarin/node_modules/truncate/ |
Upload File : |
/*global module:true*/
/*jslint nomen:true*/
/**
* @module Utility
*/
(function (context, undefined) {
'use strict';
var DEFAULT_TRUNCATE_SYMBOL = '...',
URL_REGEX = /(((ftp|https?):\/\/)[\-\w@:%_\+.~#?,&\/\/=]+)|((mailto:)?[_.\w-]+@([\w][\w\-]+\.)+[a-zA-Z]{2,3})/g; // Simple regexp
function __appendEllipsis(string, options, content){
if(content.length === string.length || !options.ellipsis){return content;}
content += options.ellipsis;
return content;
}
/**
* Truncate HTML string and keep tag safe.
*
* @method truncate
* @param {String} string string needs to be truncated
* @param {Number} maxLength length of truncated string
* @param {Object} options (optional)
* @param {Boolean} [options.keepImageTag] flag to specify if keep image tag, false by default
* @param {Boolean|String} [options.ellipsis] omission symbol for truncated string, '...' by default
* @return {String} truncated string
*/
function truncate(string, maxLength, options) {
var content = '', // truncated text storage
matches = true,
remainingLength = maxLength,
result,
index;
options = options || {};
options.ellipsis = (typeof options.ellipsis === "undefined") ? DEFAULT_TRUNCATE_SYMBOL : options.ellipsis;
if(!string || string.length === 0){
return '';
}
matches = true;
while(matches){
URL_REGEX.lastIndex = content.length;
matches = URL_REGEX.exec(string);
if(!matches || (matches.index - content.length) >= remainingLength){
content += string.substring(content.length, maxLength);
return __appendEllipsis(string, options, content, maxLength);
}
result = matches[0];
index = matches.index;
content += string.substring(content.length, index + result.length);
remainingLength -= index + result.length;
if(remainingLength <= 0){
break;
}
}
return __appendEllipsis(string, options, content, maxLength);
}
if ('undefined' !== typeof module && module.exports) {
module.exports = truncate;
} else {
context.truncate = truncate;
}
}(String));