Nodejs String Ends With endsWith(suffix)

Here you can find the source of endsWith(suffix)

Method Source Code

String.prototype.endsWith = function(suffix) {
  return this.match(suffix + '$') == suffix;
};

Related

  1. endsWith(substring)
    String.prototype.endsWith = function(substring) {
        var compareString = this.substring(this.length - substring.length, this.length);
        return compareString === substring;
    };
    
  2. endsWith(suffix)
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    
  3. endsWith(suffix)
    'use strict';
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    
  4. endsWith(suffix)
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    function endsWith (str, suffix) {
        return str.indexOf(suffix, str.length - suffix.length) !== -1;
    
  5. endsWith(suffix)
    "use strict";
    String.prototype.endsWith = function(suffix) {
      if (!suffix) return false;
      return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    
  6. endsWith(suffix)
    String.prototype.endsWith = function(suffix)
        return (this.substr(this.length - suffix.length) === suffix);
    
  7. endsWith(suffix)
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    
  8. endsWith(suffix)
    String.prototype.endsWith = function (suffix) {
      "use strict";
      return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    
  9. endsWith(suffix)
    var fs = require('fs');
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    fs.readdir(process.argv[2], function (err, files) {
        var ext = '.' + process.argv[3];
        for(var i in files) {
            if (files[i].endsWith(ext))
                console.log(files[i]);
    ...