Sha256: 5d9a4b6bb06a1720fa1e97eb9e59a942e52ec2201da91f0ff24c5a68276face0

Contents?: true

Size: 1017 Bytes

Versions: 262

Compression:

Stored size: 1017 Bytes

Contents

var baseClamp = require('./_baseClamp'),
    baseToString = require('./_baseToString'),
    toInteger = require('./toInteger'),
    toString = require('./toString');

/**
 * Checks if `string` starts with the given target string.
 *
 * @static
 * @memberOf _
 * @since 3.0.0
 * @category String
 * @param {string} [string=''] The string to inspect.
 * @param {string} [target] The string to search for.
 * @param {number} [position=0] The position to search from.
 * @returns {boolean} Returns `true` if `string` starts with `target`,
 *  else `false`.
 * @example
 *
 * _.startsWith('abc', 'a');
 * // => true
 *
 * _.startsWith('abc', 'b');
 * // => false
 *
 * _.startsWith('abc', 'b', 1);
 * // => true
 */
function startsWith(string, target, position) {
  string = toString(string);
  position = position == null
    ? 0
    : baseClamp(toInteger(position), 0, string.length);

  target = baseToString(target);
  return string.slice(position, position + target.length) == target;
}

module.exports = startsWith;

Version data entries

262 entries across 261 versions & 28 rubygems

Version Path
sumomo-0.10.1 data/sumomo/api_modules/node_modules/lodash/startsWith.js
sumomo-0.10.0 data/sumomo/api_modules/node_modules/lodash/startsWith.js
reed_sdk-1.0.1 node_modules/lodash/startsWith.js
reed_sdk-1.0.0 node_modules/lodash/startsWith.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/lodash/startsWith.js
sumomo-0.9.0 data/sumomo/api_modules/node_modules/lodash/startsWith.js
sumomo-0.8.22 data/sumomo/api_modules/node_modules/lodash/startsWith.js
sumomo-0.8.21 data/sumomo/api_modules/node_modules/lodash/startsWith.js
sumomo-0.8.20 data/sumomo/api_modules/node_modules/lodash/startsWith.js
sumomo-0.8.17 data/sumomo/api_modules/node_modules/lodash/startsWith.js
sumomo-0.8.16 data/sumomo/api_modules/node_modules/lodash/startsWith.js
disco_app-0.18.0 test/dummy/node_modules/lodash/startsWith.js
disco_app-0.18.2 test/dummy/node_modules/lodash/startsWith.js
sumomo-0.8.15 data/sumomo/api_modules/node_modules/lodash/startsWith.js
trusty-cms-5.0.7 node_modules/lodash/startsWith.js
appmap-0.72.2 ./node_modules/lodash/startsWith.js
trusty-cms-5.0.6 node_modules/lodash/startsWith.js
appmap-0.72.1 ./node_modules/lodash/startsWith.js
appmap-0.72.0 ./node_modules/lodash/startsWith.js
trusty-cms-5.0.5 node_modules/lodash/startsWith.js