Options
All
  • Public
  • Public/Protected
  • All
Menu

Module type/isTrue

Index

Functions

Functions

isTrue

0.0.35 provide
  • isTrue(value: string | boolean | null | undefined): boolean
  • 判断接口返回的是否为true

    remarks

    阿里mtop接口请求,针对boolean进行判断,其他业务禁用

    example

    value is true

    import { type } from 'onex-utils';
    const isTrue = type.isTrue('true');
    console.log(isTrue); // true
    
    example

    value is false

    import { type } from 'onex-utils';
    const isTrue = type.isTrue('false');
    console.log(isTrue); // false
    
    example

    value is 0

    import { type } from 'onex-utils';
    const isTrue = type.isTrue(0);
    console.log(isTrue); // false
    
    deprecated

    只适合阿里MTOP接口请求业务场景,其他业务场景勿使用

    Parameters

    • value: string | boolean | null | undefined

    Returns boolean