mirror of
https://github.com/chowa/ejyy.git
synced 2026-01-21 05:07:48 +08:00
24 lines
860 B
TypeScript
24 lines
860 B
TypeScript
/**
|
|
* +----------------------------------------------------------------------
|
|
* | 「e家宜业」 —— 助力物业服务升级,用心服务万千业主
|
|
* +----------------------------------------------------------------------
|
|
* | Copyright (c) 2020~2021 https://www.chowa.com All rights reserved.
|
|
* +----------------------------------------------------------------------
|
|
* | Licensed 未经许可不能去掉「e家宜业」和「卓瓦科技」相关版权
|
|
* +----------------------------------------------------------------------
|
|
* | Author: jixuecong@chowa.cn
|
|
* +----------------------------------------------------------------------
|
|
*/
|
|
|
|
export function omit(str: string, len: number): string {
|
|
if (!str) {
|
|
return '';
|
|
}
|
|
|
|
if (str.length <= len) {
|
|
return str;
|
|
}
|
|
|
|
return str.substring(0, len - 2) + '…';
|
|
}
|