Nodejs String Ends With endsWith(pattern)

Here you can find the source of endsWith(pattern)

Method Source Code

// method endsWith
// 'Prototype Library'.endssWith( 'ary' ); => true
String.prototype.endsWith = String.prototype.endsWith || function ( pattern ) {
    var d = this.length - pattern.length;
    // We use `indexOf` instead of `lastIndexOf` to avoid tying execution
    // time to string length when string doesn't end with pattern.
    return d >= 0 && this.indexOf(pattern, d) === d;
}
// --------------------------------------------------------------------------------------------

Related

  1. endsWith(needle)
    String.prototype.endsWith = function(needle) {
        return this.slice(-needle.length) == needle;
    
  2. endsWith(pattern)
    String.prototype.endsWith = function(pattern) {
      var d = this.length - pattern.length;
      return d >= 0 && this.lastIndexOf(pattern) === d;
    };
    
  3. endsWith(pattern)
    String.prototype.endsWith = function(pattern) {
        return (this.substr(this.length - pattern.length, pattern.length) == pattern);
    };
    
  4. endsWith(pattern)
    String.prototype.endsWith = function(pattern) {
        return (this.substr(this.length - pattern.length, pattern.length) === pattern);
    };
    
  5. endsWith(pattern)
    String.prototype.endsWith = function(pattern) {
        var d = this.length - pattern.length;
        return d >= 0 && this.lastIndexOf(pattern) === d;
    };
    
  6. endsWith(pattern, caseSensitive)
    String.prototype.endsWith = function(pattern, caseSensitive) {
      var d, s;
      if (caseSensitive) {
        d = this.length - pattern.length;
        return d >= 0 && this.lastIndexOf(pattern) === d;
      } else {
        s = this.toLowerCase();
        pattern = pattern.toLowerCase();
        d = s.length - pattern.length;
    ...
    
  7. endsWith(prefix)
    String.prototype.endsWith = function(prefix){
        return this.substr(this.length - prefix.length) === prefix;
    };
    
  8. endsWith(s)
    String.prototype.endsWith = function(s) {
      return this.length >= s.length && this.substr(this.length - s.length) == s;
    
  9. endsWith(s)
    String.prototype.endsWith = function(s){
        return this.indexOf(s) == this.length - s.length;
    };