mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 01:39:36 +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
|
* @return {string} The truncated text
|
||||||
*/
|
*/
|
||||||
export function truncateTextAtCharIndex(text, charIndex, replacement = '...') {
|
export function truncateTextAtCharIndex(text, charIndex, replacement = '...') {
|
||||||
let wrappedText = '';
|
let truncatedText = '';
|
||||||
|
|
||||||
wrappedText = text.slice(0, charIndex);
|
truncatedText = text.slice(0, charIndex);
|
||||||
wrappedText += text.length > charIndex ? replacement : '';
|
truncatedText += text.length > charIndex ? replacement : '';
|
||||||
|
|
||||||
return wrappedText;
|
return truncatedText;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user