Socket
Socket
Sign inDemoInstall

is-lower-case

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    is-lower-case

Returns `true` if the string is lower case only


Version published
Weekly downloads
4.5M
decreased by-1.17%
Maintainers
1
Install size
2.29 kB
Created
Weekly downloads
 

Package description

What is is-lower-case?

The is-lower-case package is a simple utility that allows you to check if a given string is in lower case. It is useful when you need to validate text input or ensure that strings conform to certain case requirements.

What are is-lower-case's main functionalities?

Check if a string is in lower case

This feature allows you to verify if a string is entirely composed of lower case letters. The function returns a boolean value.

const isLowerCase = require('is-lower-case');

isLowerCase('string'); // true
isLowerCase('String'); // false
isLowerCase('STRING'); // false

Other packages similar to is-lower-case

Readme

Source

Is Lower Case

Returns true if the string is lower case only.

Installation

npm install is-lower-case --save

Usage

import { isLowerCase } from "is-lower-case";

isLowerCase("string"); //=> true
isLowerCase("dot.case"); //=> true
isLowerCase("PascalCase"); //=> false
isLowerCase("version 1.2.10"); //=> true

License

MIT

Keywords

FAQs

Last updated on 30 Sep 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc