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:
36
node_modules/ramda/es/toPairsIn.js
generated
vendored
Normal file
36
node_modules/ramda/es/toPairsIn.js
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
import _curry1 from "./internal/_curry1.js";
|
||||
/**
|
||||
* Converts an object into an array of key, value arrays. The object's own
|
||||
* properties and prototype properties are used. Note that the order of the
|
||||
* output array is not guaranteed to be consistent across different JS
|
||||
* platforms.
|
||||
*
|
||||
* @func
|
||||
* @memberOf R
|
||||
* @since v0.4.0
|
||||
* @category Object
|
||||
* @sig {String: *} -> [[String,*]]
|
||||
* @param {Object} obj The object to extract from
|
||||
* @return {Array} An array of key, value arrays from the object's own
|
||||
* and prototype properties.
|
||||
* @example
|
||||
*
|
||||
* const F = function() { this.x = 'X'; };
|
||||
* F.prototype.y = 'Y';
|
||||
* const f = new F();
|
||||
* R.toPairsIn(f); //=> [['x','X'], ['y','Y']]
|
||||
*/
|
||||
|
||||
var toPairsIn =
|
||||
/*#__PURE__*/
|
||||
_curry1(function toPairsIn(obj) {
|
||||
var pairs = [];
|
||||
|
||||
for (var prop in obj) {
|
||||
pairs[pairs.length] = [prop, obj[prop]];
|
||||
}
|
||||
|
||||
return pairs;
|
||||
});
|
||||
|
||||
export default toPairsIn;
|
Reference in New Issue
Block a user