Nodejs String Ends With endsWith(suffix)

Here you can find the source of endsWith(suffix)

Method Source Code

/**// w w  w.  j a  v a 2s . c  o m
 * Author: Antoine Rouaze <antoine.rouaze@gmail.com>
 */

String.prototype.endsWith = function (suffix) {
    return this.indexOf(suffix, this.length - suffix.length) !== -1;
}

Related

  1. endsWith(suffix)
    String.prototype.endsWith = function(suffix) {
      return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    var fs = require('fs');
    var fileName = process.argv[2];
    var fileExtension = process.argv[3];
    fs.readdir(fileName, function (err, list) {
      if (err) throw err;
      for (var i = 0; i < list.length; i++) {
    ...
    
  2. endsWith(suffix)
    var fs = require('fs');
    var path = require('path');
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    module.exports = function (dir, ext, callback) {
        fs.readdir(dir, function (err, files) {
            if (err) return callback(err, null);
            return callback(null, files.filter(function(file){
    ...
    
  3. endsWith(suffix)
    String.prototype.endsWith = function (suffix) {
      "use strict";
      if (!suffix && typeof suffix !== 'string') {
        return false;
      var stringPosition = this.length - suffix.length;
      var suffixIndex = this.indexOf(suffix, stringPosition);
      return suffixIndex === stringPosition;
    };
    ...
    
  4. endsWith(suffix)
    String.prototype.endsWith = function(suffix) {
      return this.match(suffix+"$") == suffix;
    };
    
  5. endsWith(suffix)
    'use strict';
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    
  6. endsWith(suffix)
    String.prototype.endsWith = function (suffix) {
      return this.substring(this.length - suffix.length) === suffix;
    };
    
  7. endsWith(suffix)
    var path = require('path')
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    module.exports = function(){
      return function drafts(files, metalsmith, done){
        Object.keys(files).forEach(function(file) {
          if (file.endsWith('.html')) {
            var baseFilename = path.basename(file)
    ...
    
  8. endsWith(suffix)
    String.prototype.endsWith = function(suffix) {
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    String.prototype.startsWith = function(searchString, position) {
      position = position || 0;
      return this.indexOf(searchString, position) === position;
    };
    
  9. endsWith(suffix)
    String.prototype.endsWith = function (suffix){ 
        return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };