UNPKG

kasi

Version:

A collection of functions for working with different casings.

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