UNPKG

kasi

Version:

A collection of functions for working with different casings.

9 lines (8 loc) 193 B
/* IMPORT */ import toPascalCase from './to_pascal_case.js'; /* MAIN */ const isPascalCase = (value) => { return value === toPascalCase(value); }; /* EXPORT */ export default isPascalCase;