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 = [];
0
0
0
+ 17 other calls in file
ramda.clone is the most popular function in ramda (30311 examples)