🚀 Launch Week Day 3:Introducing Supply Chain Attack Campaigns Tracking.Learn More →
Socket
Book a DemoInstallSign in
Socket

starts-with-any

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

starts-with-any

Returns true if the given string or array begins with any of the given substrings.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

starts-with-any NPM version

Returns true if the given string or array begins with any of the given substrings.

Install

Install with npm

$ npm i starts-with-any --save

Usage

var startsWithAny = require('starts-with-any');

true

All of the following return true:

startsWithAny('abc', 'a');
startsWithAny('xyz', 'x');
startsWithAny(['a', 'b', 'c'], 'a');
startsWithAny(['x', 'y', 'z'], 'x');
startsWithAny('abc', ['a', 'z', 'c']);
startsWithAny('xyz', ['x', 'y', 'z']);
startsWithAny('foo bar baz', ['slls', 'a', 'foo']);
startsWithAny(['a', 'b', 'c'], ['a', 'g', 'foo']);
startsWithAny(['x', 'y', 'z'], ['alpha', 'delta', 'x']);
//=> true

false

All of the following return false:

startsWithAny('xyz', 'a');
startsWithAny('abc', 'z');
startsWithAny('abc', ['x', 'y', 'z']);
startsWithAny('xyz', ['a', 'b', 'c']);
startsWithAny('foo bar baz', ['slls', 'a', 'baz']);
//=> false
  • ends-with: Returns true if the given string or array ends with suffix using strict equality for… more
  • starts-with: Returns true if the given string or array starts with prefix using strict equality for… more

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.

This file was generated by verb-cli on July 09, 2015.

FAQs

Package last updated on 09 Jul 2015

Did you know?

Socket

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