string-ends-with-x

1.1.2 • Public • Published

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

string-ends-with-x

Determines whether a string ends with the characters of a specified string.

module.exportsboolean

This method determines whether a string begins with the characters of a specified string, returning true or false as appropriate.

Kind: Exported member
Returns: boolean - true if the given characters are found at the end of the string; otherwise, false.
Throws:

  • TypeError If string is null or undefined.
  • TypeError If searchString is a RegExp.
Param Type Description
string string The string to be search.
searchString string The characters to be searched for at the end of this string.

Example

import endsWith from 'string-ends-with-x';
 
const str = 'To be, or not to be, that is the question.';
 
console.log(endsWith(str, 'question.')); // true
console.log(endsWith(str, 'to be'));     // false
console.log(endsWith(str, 'to be', 19)); // true

/string-ends-with-x/

    Package Sidebar

    Install

    npm i string-ends-with-x

    Weekly Downloads

    20

    Version

    1.1.2

    License

    MIT

    Unpacked Size

    360 kB

    Total Files

    11

    Last publish

    Collaborators

    • xotic750