removeleft.js

  1. import startsWith from './startswith'
  2. import substr from './substr'
  3. /**
  4. * @module removeLeft
  5. * @description
  6. * Returns a new string with the 'prefix' removed, if present.
  7. * ## Install
  8. * Install all functions of strman
  9. * ```sh
  10. * yarn add strman
  11. * ```
  12. * or just the removeLeft function
  13. * ```sh
  14. * yarn add strman.removeleft
  15. * ```
  16. * ## Usage
  17. * ```javascript
  18. * import { removeLeft } from 'strman'
  19. * // OR
  20. * import removeLeft from 'strman.removeleft'
  21. * ```
  22. * @param {String} value The String!
  23. * @param {String} prefix String to remove on left.
  24. * @param {Boolean} [caseSensitive = true] If you need to caseSensitive.
  25. * @example
  26. * const title = 'strman'
  27. * removeLeft(title, 'str')
  28. * // => 'man'
  29. * @returns {String} The String without prefix!
  30. */
  31. export default (value, prefix, caseSensitive = true) => {
  32. if (startsWith(value, prefix, 0, caseSensitive)) {
  33. return substr(value, prefix.length)
  34. }
  35. return value
  36. }