mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
Minor renaming fix
This commit is contained in:
parent
cb452ce7bf
commit
5e98787288
@ -215,10 +215,10 @@ export function excludePropFromObject(obj, propList){
|
||||
* @return {string} The truncated text
|
||||
*/
|
||||
export function truncateTextAtCharIndex(text, charIndex, replacement = '...') {
|
||||
let wrappedText = '';
|
||||
let truncatedText = '';
|
||||
|
||||
wrappedText = text.slice(0, charIndex);
|
||||
wrappedText += text.length > charIndex ? replacement : '';
|
||||
truncatedText = text.slice(0, charIndex);
|
||||
truncatedText += text.length > charIndex ? replacement : '';
|
||||
|
||||
return wrappedText;
|
||||
return truncatedText;
|
||||
}
|
Loading…
Reference in New Issue
Block a user