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) 161 B
import { Converter } from "../types"; /** * Converter for numeric values. */ declare const numberConverter: Converter<number>; export default numberConverter;