[Home](./index.md) > [@apextoaster/js-utils](./js-utils.md) > [isSome](./js-utils.issome.md) ## isSome() function Typeguard to check if a `Maybe` is `Some` value (not `None`). Signature: ```typescript export declare function isSome(val: Maybe): val is T; ``` ## Parameters | Parameter | Type | Description | | --- | --- | --- | | val | [Maybe](./js-utils.maybe.md)<T> | | Returns: val is T