Skip to content

kevva/string-includes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

string-includes Build Status

ES6 String.includes() ponyfill

Ponyfill: A polyfill that doesn't overwrite the native method

Install

$ npm install --save string-includes

Usage

const stringIncludes = require('string-includes');

stringIncludes('unicorns and rainbows', 'unicorns');
//=> true

stringIncludes('unicorns and rainbows', 'rainbows');
//=> true

stringIncludes('unicorns and rainbows', 'unicorns', 1);
//=> false

API

stringIncludes(string, searchString, [position])

string

Type: string

The string to search in.

searchString

Type: string

A string to be searched for.

position

Type: Number
Default: 0

The position in this string at which to begin searching for searchString.

License

MIT © Kevin Martensson

About

ES6 String.includes() ponyfill

Resources

License

Stars

Watchers

Forks

Packages

No packages published