27 lines
727 B
JavaScript
27 lines
727 B
JavaScript
import _curry2 from './internal/_curry2';
|
|
import equals from './equals';
|
|
import takeLast from './takeLast';
|
|
|
|
/**
|
|
* Checks if a list ends with the provided values
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.24.0
|
|
* @category List
|
|
* @sig [a] -> Boolean
|
|
* @sig String -> Boolean
|
|
* @param {*} suffix
|
|
* @param {*} list
|
|
* @return {Boolean}
|
|
* @example
|
|
*
|
|
* R.endsWith('c', 'abc') //=> true
|
|
* R.endsWith('b', 'abc') //=> false
|
|
* R.endsWith(['c'], ['a', 'b', 'c']) //=> true
|
|
* R.endsWith(['b'], ['a', 'b', 'c']) //=> false
|
|
*/
|
|
var endsWith = /*#__PURE__*/_curry2(function (suffix, list) {
|
|
return equals(takeLast(suffix.length, list), suffix);
|
|
});
|
|
export default endsWith; |