UNPKG

kasi

Version:

A collection of functions for working with different casings.

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