UNPKG

kasi

Version:

A collection of functions for working with different casings.

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