mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
37 lines
922 B
TypeScript
37 lines
922 B
TypeScript
|
// Loaded from https://deno.land/x/ramda@v0.27.2/source/keysIn.js
|
||
|
|
||
|
|
||
|
import _curry1 from './internal/_curry1.js';
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Returns a list containing the names of all the properties of the supplied
|
||
|
* object, including prototype properties.
|
||
|
* Note that the order of the output array is not guaranteed to be consistent
|
||
|
* across different JS platforms.
|
||
|
*
|
||
|
* @func
|
||
|
* @memberOf R
|
||
|
* @since v0.2.0
|
||
|
* @category Object
|
||
|
* @sig {k: v} -> [k]
|
||
|
* @param {Object} obj The object to extract properties from
|
||
|
* @return {Array} An array of the object's own and prototype properties.
|
||
|
* @see R.keys, R.valuesIn
|
||
|
* @example
|
||
|
*
|
||
|
* const F = function() { this.x = 'X'; };
|
||
|
* F.prototype.y = 'Y';
|
||
|
* const f = new F();
|
||
|
* R.keysIn(f); //=> ['x', 'y']
|
||
|
*/
|
||
|
var keysIn = _curry1(function keysIn(obj) {
|
||
|
var prop;
|
||
|
var ks = [];
|
||
|
for (prop in obj) {
|
||
|
ks[ks.length] = prop;
|
||
|
}
|
||
|
return ks;
|
||
|
});
|
||
|
export default keysIn;
|