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.
32 lines
759 B
TypeScript
32 lines
759 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/always.js
|
|
|
|
|
|
import _curry1 from './internal/_curry1.js';
|
|
|
|
|
|
/**
|
|
* Returns a function that always returns the given value. Note that for
|
|
* non-primitives the value returned is a reference to the original value.
|
|
*
|
|
* This function is known as `const`, `constant`, or `K` (for K combinator) in
|
|
* other languages and libraries.
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.1.0
|
|
* @category Function
|
|
* @sig a -> (* -> a)
|
|
* @param {*} val The value to wrap in a function
|
|
* @return {Function} A Function :: * -> val.
|
|
* @example
|
|
*
|
|
* const t = R.always('Tee');
|
|
* t(); //=> 'Tee'
|
|
*/
|
|
var always = _curry1(function always(val) {
|
|
return function() {
|
|
return val;
|
|
};
|
|
});
|
|
export default always;
|