UNPKG

@accounts/magic-link

Version:

[![npm](https://img.shields.io/npm/v/@accounts/magic-link)](https://www.npmjs.com/package/@accounts/magic-link) [![npm downloads](https://img.shields.io/npm/dm/@accounts/magic-link)](https://www.npmjs.com/package/@accounts/magic-link) [![codecov](https://

8 lines (6 loc) 187 B
export const isString = (x: any): x is string => { return typeof x === 'string'; }; export const isObject = (x: any): x is object => { return x !== null && typeof x === 'object'; };