refactor(Cypress): Moved Cypress to the main folder of the project, as I don't need a sub project for now.
This commit is contained in:
19
node_modules/ramda/es/internal/_curry1.js
generated
vendored
Normal file
19
node_modules/ramda/es/internal/_curry1.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import _isPlaceholder from "./_isPlaceholder.js";
|
||||
/**
|
||||
* Optimized internal one-arity curry function.
|
||||
*
|
||||
* @private
|
||||
* @category Function
|
||||
* @param {Function} fn The function to curry.
|
||||
* @return {Function} The curried function.
|
||||
*/
|
||||
|
||||
export default function _curry1(fn) {
|
||||
return function f1(a) {
|
||||
if (arguments.length === 0 || _isPlaceholder(a)) {
|
||||
return f1;
|
||||
} else {
|
||||
return fn.apply(this, arguments);
|
||||
}
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user