Nodejs String Starts With startsWith(prefix, ignoreCase)

Here you can find the source of startsWith(prefix, ignoreCase)

Method Source Code

String.prototype.startsWith = function (prefix, ignoreCase) {
    var _prefix = prefix.source ? prefix.source : prefix.escapeRegExp();
    return this.match(new RegExp("^" + _prefix, ignoreCase ? 'i' : ''));
};

String.prototype.endsWith = function (suffix, ignoreCase) {
    var _suffix = suffix.source ? suffix.source : suffix.escapeRegExp();
    return this.match(new RegExp(_suffix + "$", ignoreCase ? 'i' : ''));
};

String.prototype.escapeRegExp = function() {
    return this.replace(/[-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
};

String.prototype.toRegExp = function(options) {
    return new RegExp(this.escapeRegExp(), options);
};

Array.prototype.uniq = function () {
    return this.filter(function (itm, i, a) {
        return i == a.indexOf(itm);
    });/*from   w  ww.j a v  a  2  s.  c om*/
};

Related

  1. startsWith(prefix)
    String.prototype.startsWith = function(prefix){
        return (this.lastIndexOf(prefix, 0) === 0);
    };
    
  2. startsWith(prefix)
    'use strict';
    var mime = require('mime');
    String.prototype.startsWith = function(prefix) {
      return this.indexOf(prefix) === 0;
    };
    String.prototype.endsWith = function(suffix) {
      return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    
  3. startsWith(prefix)
    String.prototype.startsWith = function (prefix){
      return this.slice(0, prefix.length) == prefix;
    
  4. startsWith(prefix)
    String.prototype.startsWith = function(prefix)
      if(prefix == null)
        return false;
      if(this.length < prefix.length)
        return false;
      return this.substring(0, prefix.length) == prefix;
    };
    String.prototype.endsWith = function(suffix)
    ...
    
  5. startsWith(prefix)
    String.prototype.startsWith = function (prefix) {
      return this.substring(0, prefix.length) == prefix;
    };
    
  6. startsWith(s)
    String.prototype.startsWith = function (s) {
        if (this.substr(0, s.length) === s)
            return true;
        else
            return false;
    
  7. startsWith(s)
    String.prototype.startsWith = function (s) {
      return (this.indexOf(s) === 0);
    
  8. startsWith(s)
    String.prototype.startsWith = function(s) {
        return (s === this.substr(0, s.length));
    
  9. startsWith(s)
    String.prototype.startsWith = function(s){
       return (this.indexOf(s)===0);