Socket
Socket
Sign inDemoInstall

ends-with

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ends-with

Returns `true` if the given `string` or `array` ends with `suffix` using strict equality for comparisons.


Version published
Weekly downloads
96K
increased by5.03%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

ends-with NPM version

Returns true if the given string or array ends with suffix using strict equality for comparisons.

Install

Install with npm:
npm i ends-with --save-dev

Run benchmarks

This uses the fasted version of 9 different implementations that were benchmarked.

node benchmark

Run tests

npm test

Usage

var endsWith = require('ends-with');

endsWith('abc', 'c');
//=> true

endsWith(['a', 'b', 'c'], 'c');
//=> true

endsWith(['abc', 'abc', 'abc'], 'c');
//=> false

endsWith(['abc', 'abc', 'abc'], 'c');
//=> false

endsWith(['a', 'b', 42], 42)
//=> true

endsWith(['a', 'b', 42], '42')
//=> false

Author

Jon Schlinkert

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on October 06, 2014.

Keywords

FAQs

Last updated on 06 Oct 2014

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