All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.is-upper-case.is-upper-case.js Maven / Gradle / Ivy

The newest version!
var upperCase = require('upper-case')

/**
 * Check if a string is upper case.
 *
 * @param  {String}  string
 * @param  {String}  [locale]
 * @return {Boolean}
 */
module.exports = function (string, locale) {
  return upperCase(string, locale) === string
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy