@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
42 lines (37 loc) • 904 B
JavaScript
var _curry2 =
/*#__PURE__*/
require("./internal/_curry2.js");
var equals =
/*#__PURE__*/
require("./equals.js");
var takeLast =
/*#__PURE__*/
require("./takeLast.js");
/**
* Checks if a list ends with the provided sublist.
*
* Similarly, checks if a string ends with the provided substring.
*
* @func
* @memberOf R
* @since v0.24.0
* @category List
* @sig [a] -> [a] -> Boolean
* @sig String -> String -> Boolean
* @param {*} suffix
* @param {*} list
* @return {Boolean}
* @see R.startsWith
* @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);
});
module.exports = endsWith;