UNPKG

string-converters

Version:

A utility library for converting data types and working with arrays. Provides converters for boolean, number, and string values, along with array conversion functions and support for values with predefined options.

7 lines (6 loc) 164 B
import { Converter } from "../types"; /** * Converter for boolean values. */ declare const booleanConverter: Converter<boolean>; export default booleanConverter;