Str.prototype.isLowercase = function (value) {
  // Default statement
  return !_.isUndefined(value) && _.isString(value) &&
          value.length === 1 && value.charCodeAt(0) >= 97 && value.charCodeAt(0) <= 122;
};