1.0.1 • Published 5 years ago

safe-type-predicate v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

safe-type-predicate

Build Status

Install

$ npm i safe-type-predicate

Usage

import { isT, isNotT, defineIsT } from "safe-type-predicate";

// isString: (x: unknown) => x is string
const isString = defineIsT((x: unknown) =>
    typeof x === "string" ? isT(x) : isNotT()
);

isString("x"); // true
isString(null); // false

// isA: (x: "a" | "b") => x is "a"
const isA = defineIsT((x: "a" | "b") =>
    x === "a" ? isT(x) : isNotT()
);

isA("a"); // true
isA("b"); // false
isA("c"); // Argument of type '"c"' is not assignable to parameter of type '"a" | "b"'