UNPKG

@isotope/prototope

Version:

Isotope-based JavaScript library for speedy UI prototyping

9 lines (6 loc) 343 B
import { createUtil } from "../util"; const uppercase = createUtil({ textTransform: "uppercase" }); const lowercase = createUtil({ textTransform: "lowercase" }); const capitalize = createUtil({ textTransform: "capitalize" }); const normalCase = createUtil({ textTransform: "none" }); export { uppercase, lowercase, capitalize, normalCase };