UNPKG

kasi

Version:

A collection of functions for working with different casings.

9 lines (8 loc) 183 B
/* IMPORT */ import toPathCase from './to_path_case.js'; /* MAIN */ const isPathCase = (value) => { return value === toPathCase(value); }; /* EXPORT */ export default isPathCase;