UNPKG

kasi

Version:

A collection of functions for working with different casings.

9 lines (8 loc) 203 B
/* IMPORT */ import toConstantCase from './to_constant_case.js'; /* MAIN */ const isConstantCase = (value) => { return value === toConstantCase(value); }; /* EXPORT */ export default isConstantCase;