Readme.md (345B)
1 2 # object 3 4 Object utils. 5 6 ## API 7 8 ### .keys(obj) 9 10 Return the keys for `obj`. 11 12 ### .values(obj) 13 14 Return the values for `obj`. 15 16 ### .length(obj) 17 18 Return the number of keys for `obj`. 19 20 ### .isEmpty(obj) 21 22 Check if `obj` is empty. 23 24 ### .merge(a, b) 25 26 Merge object `b` into `a`, returns `a`. 27 Precedence is given to `b`. 28 29 ## License 30 31 MIT