Socket
Socket
Sign inDemoInstall

@arcticzeroo/typeguard

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @arcticzeroo/typeguard

A collection of TypeScript typeguards


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
6.82 kB
Created
Weekly downloads
 

Readme

Source

@arcticzeroo/typeguard

A collection of TS typeguards to check duck types easily.

import { isDuckType, isDuckTypeArray } from '@arcticzeroo/typeguard';

interface IUser {
    userName: string;
    coins: number;
}

const getUserData = async (id: string): Promise<IUser> => {
    const response = await fetch(`https://myapi/users/${id}`);
    
    if (!response.ok) {
        throw new Error('Could not get user');
    }
    
    const json = await response.json();
    
    // I can't use json.userName or json.coins yet!
    
    if (!isDuckType<IUser>(json, {
        userName:   'string',
        coins:      'number'
    })) {
        throw new Error('Response is not a user');
    }
    
    // TypeScript now knows that my type is an IUser,
    // so I can use json.userName or json.coins, or just return it
    
    return json;
};

const getAllUsers = async (): Promise<IUserResponse[]> => {
    const response = await fetch(`https://myapi/users/`);

    if (!response.ok) {
        throw new Error('Could not get users');
    }

    const json = await response.json();

    if (!isDuckTypeArray<IUser>(json, {
        userName:   'string',
        coins:      'number'
    })) {
        throw new Error('Response is not an array of users');
    }

    // TypeScript now knows that my type is an IUser[],

    return json;
};

FAQs

Last updated on 27 May 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc