equal.js

  1. /**
  2. * @module equal
  3. * @description
  4. * Tests if two strings are equal.
  5. * ## Install
  6. * Install all functions of strman
  7. * ```sh
  8. * yarn add strman
  9. * ```
  10. * or just the equal function
  11. * ```sh
  12. * yarn add strman.equal
  13. * ```
  14. * ## Usage
  15. * ```javascript
  16. * import { equal } from 'strman'
  17. * // OR
  18. * import equal from 'strman.equal'
  19. * ```
  20. * @param {String} stringA - String for the comparative
  21. * @param {String} stringB - String to be compared
  22. * @example
  23. * equal('foo', 'foo')
  24. * // => true
  25. * @returns {Boolean} `stringA`is equal `stringB`
  26. */
  27. export default (stringA, stringB) => stringA === stringB