Skip to content
On this page

Home > @taiyuuki/utils > is_not_empty_string

is_not_empty_string() function

该函数检查给定的输入是否为非空字符串或非空值。

Signature:

typescript
declare function is_not_empty_string(s: any, trim?: boolean): boolean;
declare function is_not_empty_string(s: any, trim?: boolean): boolean;

Parameters

ParameterTypeDescription
sany需要检查是否为空的输入值。它可以是任何数据类型,但此函数专门检查空字符串。
trimboolean(Optional) 一个布尔参数,指定是否在检查字符串是否为空之前从字符串中删除空格。如果设置为 true,将在检查字符串长度之前删除空格。如果未提供或设置为 false,则在检查字符串长度之前不会删除空格。

Returns:

boolean

一个布尔值。如果输入的 s 是非空字符串(如果 trim 设置为 true ,则可选择修剪),或者如果 s 不是 null 或 undefined ,则返回 true 。否则返回 false

Released under the MIT License.