type-guard-helpers
TypeScript icon, indicating that this package has built-in type declarations

1.1.21 • Public • Published

Node version build

https://nodei.co/npm/type-guard-helpers.png?downloads=true&downloadRank=true&stars=true

Installation

npm install type-guard-helpers

Documentation

Documentation

Official documentation about narrowing in Typescript

Type Guard Basics

A quick introduction to Type Guards in Typescript.

Idiomatic Type Guard

A Type Guard is a technique to narrow down the type of a variable. They are really just if-statements:

if (status === 'success') status; // status: 'success'

User Defined Type Guard

Type Guards can be compartmentalized by defining a function using the is keyword:

const isSuccess = (value: unknown): value is 'success' => value === 'success';
if (isSuccess(status)) status; // status: 'success'

Composing objects

We can compose complex type predicates by combining several small ones. It helps to write them all out while making the name more specific each time a predicate is made.

const isItemType = matchEither('a', 'b');
const isItem = matchSchema({ type: isItemType });
const isItems = guardArrayValues(isItem);

const isItemResponse = matchSchema({
  items: isItems
});

const Input = {} as Record<string, unknown>; // unknown

if (isItemResponse(Input)) {
  expectType<{
	readonly items: readonly ({ type: 'a' | 'b' })[];
  }>(Input);
}

Combining guards

The output of several guards can be combined to narrow to a single type

const isFooBar = guardAll(
	(value: {type?:string}): value is {type:'a'} => value.type === 'a',
	(value: {subType?:string}): value is {subType:'b'} => value.subType === 'b'
);

if (isFooBar(test)) {
	expectType<{
		readonly type: 'a',
		readonly subType: 'b'
	}>(test);
}

Piping guards

It is also possible to pipe type guards top to bottom. This works best when functions are inlined. The output of the each guard is piped to the parameter of the next.

const isFooBar = guardPipe(
	(value): value is string => typeof value === 'string',
	(value): value is `foo${string}` => value.startsWith('foo'),
	(value): value is `foobar` => value === 'foobar'
);

if (isFooBar(test)) {
	expectType<'foobar'>(test);
}

Negating guards

Negating guards is possible, though it adds some complexity so it's best to avoid using it if possible.

const isNotFoo = negateGuard(isFoo);
const fooOrBar = 'foo' as 'foo' | 'bar';

if (isNotFoo(fooOrBar)) {
	expectType<'bar'>(fooOrBar);
}

Non nullable

const testValue = null as {foo:'bar'} | null
if (isNonNullable(testValue)) {
	expectType<{foo:'bar'}>(testValue);
}

If you must use a negating type guard inside a composing function, you can bind the input of the function as such:

const testValues = [null, { foo: 'bar' }, null] as const;
const filterNonNullable = filterGuard(
  // fix the argument to the function
  isNonNullable as typeof isNonNullable<(typeof testValues)[number]>
);
// same as excludeGuard(isNullable)
const testValuesFiltered = filterNonNullable(testValues);
expectType<
  readonly [
    {
      readonly foo: 'bar';
    }
  ]
>(testValuesFiltered);

Go checkout the documentation.

Readme

Keywords

none

Package Sidebar

Install

npm i type-guard-helpers

Weekly Downloads

1

Version

1.1.21

License

MIT

Unpacked Size

149 kB

Total Files

202

Last publish

Collaborators

  • nicobb