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