arthurvr / is-uppercase

Check if a string is all uppercase

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is-uppercase Build Status

Check if a string is all uppercase

Install

$ npm install --save is-uppercase

Usage

const isUppercase = require('is-uppercase');

isUppercase('unicorns');
//=> false

isUppercase('UNICORNS');
//=> true

License

MIT © Arthur Verschaeve

About

Check if a string is all uppercase

License:MIT License


Languages

Language:JavaScript 100.0%