UNPKG

kasi

Version:

A collection of functions for working with different casings.

9 lines (8 loc) 188 B
/* IMPORT */ import toTitleCase from './to_title_case.js'; /* MAIN */ const isTitleCase = (value) => { return value === toTitleCase(value); }; /* EXPORT */ export default isTitleCase;