epiphany/node_modules/ends-with
2023-12-09 22:48:07 -08:00
..
benchmark stylelint/eleventy config 2023-12-09 22:48:07 -08:00
.gitattributes stylelint/eleventy config 2023-12-09 22:48:07 -08:00
.jshintrc stylelint/eleventy config 2023-12-09 22:48:07 -08:00
.npmignore stylelint/eleventy config 2023-12-09 22:48:07 -08:00
.travis.yml stylelint/eleventy config 2023-12-09 22:48:07 -08:00
.verbrc.md stylelint/eleventy config 2023-12-09 22:48:07 -08:00
index.js stylelint/eleventy config 2023-12-09 22:48:07 -08:00
LICENSE-MIT stylelint/eleventy config 2023-12-09 22:48:07 -08:00
package.json stylelint/eleventy config 2023-12-09 22:48:07 -08:00
README.md stylelint/eleventy config 2023-12-09 22:48:07 -08:00
test.js stylelint/eleventy config 2023-12-09 22:48:07 -08:00

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.