mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
34 lines
907 B
TypeScript
34 lines
907 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/startsWith.js
|
|
|
|
|
|
import _curry2 from './internal/_curry2.js';
|
|
import equals from './equals.js';
|
|
import take from './take.js';
|
|
|
|
/**
|
|
* Checks if a list starts with the provided sublist.
|
|
*
|
|
* Similarly, checks if a string starts with the provided substring.
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.24.0
|
|
* @category List
|
|
* @sig [a] -> [a] -> Boolean
|
|
* @sig String -> String -> Boolean
|
|
* @param {*} prefix
|
|
* @param {*} list
|
|
* @return {Boolean}
|
|
* @see R.endsWith
|
|
* @example
|
|
*
|
|
* R.startsWith('a', 'abc') //=> true
|
|
* R.startsWith('b', 'abc') //=> false
|
|
* R.startsWith(['a'], ['a', 'b', 'c']) //=> true
|
|
* R.startsWith(['b'], ['a', 'b', 'c']) //=> false
|
|
*/
|
|
var startsWith = _curry2(function(prefix, list) {
|
|
return equals(take(prefix.length, list), prefix);
|
|
});
|
|
export default startsWith;
|