Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@arcticzeroo/typeguard

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcticzeroo/typeguard

A collection of TypeScript typeguards

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 27 May 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc