Here you can find the source of 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) if (baseFilename == 'index.html') { return/* w w w . j av a 2 s . c om*/ } var newFilename = file.replace('.html', '/index.html') files[newFilename] = files[file] delete files[file] } }) done(); }; }
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; }; ...
String.prototype.endsWith = function(suffix) { return this.match(suffix+"$") == suffix; };
'use strict'; String.prototype.endsWith = function(suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1; };
String.prototype.endsWith = function (suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1;
String.prototype.endsWith = function (suffix) { return this.substring(this.length - suffix.length) === 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; };
String.prototype.endsWith = function (suffix){ return this.indexOf(suffix, this.length - suffix.length) !== -1; };
String.prototype.endsWith = String.prototype.endsWith || function (suffix){ return this.indexOf(suffix, this.length - suffix.length) !== -1; };
function randInRange(lo, hi) { if (hi === undefined) { hi = lo; lo = 0; return parseInt(Math.random() * (hi - lo)) + lo; function swap (arr, i, j) { var temp = arr[i]; ...