uft

uft

A collection of performant, strongly typed utilities to aid your Typescript application.

Tree Shaking

If you are using this library in a project that has a build step featuring tree shaking (e.g. webpack, rollup, etc.), you can freely import methods from the default entry point:

import { filteredMap, isDefined } from 'uft'

Otherwise, make use of the different export paths to ensure that only the code for used methods is bundled:

import { filteredMap } from 'uft/filteredMap'
import { isDefined } from 'uft/isDefined'

Index

Functions - Array

Functions - Coerce

Functions - Is

Functions - Object

Functions - Misc

Interfaces - Misc

Type Aliases - Is

Type Aliases - Other

Type Aliases - Misc

Modules

Generated using TypeDoc