UNPKG

@accounts/password

Version:

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

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'; };