UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

13 lines (12 loc) 305 B
/** * * This method is a truthy check for a given value * @module isTrue * @param {any} value - a stringified object in string format * @return {boolean} {Boolean} a boolean value * @example * * isTrue('') // returns false * */ export declare const isTrue: (value: any) => boolean;