選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12345678910111213141516171819202122232425262728293031
  1. # object
  2. Object utils.
  3. ## API
  4. ### .keys(obj)
  5. Return the keys for `obj`.
  6. ### .values(obj)
  7. Return the values for `obj`.
  8. ### .length(obj)
  9. Return the number of keys for `obj`.
  10. ### .isEmpty(obj)
  11. Check if `obj` is empty.
  12. ### .merge(a, b)
  13. Merge object `b` into `a`, returns `a`.
  14. Precedence is given to `b`.
  15. ## License
  16. MIT