UNPKG

kasi

Version:

A collection of functions for working with different casings.

9 lines (8 loc) 178 B
/* IMPORT */ import toDotCase from './to_dot_case.js'; /* MAIN */ const isDotCase = (value) => { return value === toDotCase(value); }; /* EXPORT */ export default isDotCase;