UNPKG

kasi

Version:

A collection of functions for working with different casings.

9 lines (8 loc) 205 B
/* IMPORT */ import toUpperCase from './to_upper_case.js'; /* MAIN */ const toConstantCase = (value) => { return toUpperCase(value).replaceAll(' ', '_'); }; /* EXPORT */ export default toConstantCase;