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

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

There is a newer version: 1.1.2
Show newest version
var lowerCase = require('lower-case')

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy