How to use the valuesIn function from ramda

Find comprehensive JavaScript ramda.valuesIn code examples handpicked from public code repositorys.

4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
 * @example
 *
 *      var F = function() { this.x = 'X'; };
 *      F.prototype.y = 'Y';
 *      var f = new F();
 *      R.valuesIn(f); //=> ['X', 'Y']
 */
var valuesIn = _curry1(function valuesIn(obj) {
    var prop;
    var vs = [];
fork icon0
star icon0
watch icon0

+ 17 other calls in file

Other functions in ramda

Sorted by popularity

function icon

ramda.clone is the most popular function in ramda (30311 examples)