Socket
Socket
Sign inDemoInstall

ignore-case

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ignore-case

A JavaScript micro library that provides case-insensitive string helpers


Version published
Weekly downloads
15K
decreased by-19.59%
Maintainers
1
Install size
5.23 kB
Created
Weekly downloads
 

Readme

Source

ignore-case

A JavaScript micro library that provides case-insensitive string helpers.

Installation

Install using npm:

npm install ignore-case

Example

var ignoreCase = require('ignore-case');
ignoreCase.equals('FOO', 'Foo'); // => true

API

equals(string1, string2)

Returns true if the specified strings are equal, ignoring case; otherwise, false.

includes(string, searchString[, position])

Returns true if string contains searchString, ignoring case; otherwise, false.

startsWith(string, searchString[, position])

Returns true if string starts with searchString, ignoring case; otherwise, false.

endsWith(string, searchString[, position])

Returns true if string ends with searchString, ignoring case; otherwise, false.

indexOf(string, searchString[, position])

Returns the index of the first occurrence of searchString in string, ignoring case, or -1 if searchString is not found.

License

MIT

Keywords

FAQs

Last updated on 03 Mar 2016

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