Skip to content

Releases: teamdunno/object

v1.2.1

14 Apr 05:54

Choose a tag to compare

  • Added SeeMaker class for typechecking at JS, including;
  • Addded function SeeMaker.see() or default see() function, so you can access .check(), .checkAsync(), .into(), .intoAsync()
  • Added typer to work on typechecking at JS
  • Added withTyper for typer wrapper for SeeMaker.see()

v1.2.0 release

03 Mar 10:24

Choose a tag to compare

  • Bugfix for isEmptyLiteralArray function
  • Fix typo for isEmptyExtendedArray function
  • Add async array & synced array functions (to detect those Symbol.iterator and Symbol.asyncIterator).

But if Symbol.asyncIterator dosent supported, it will return as false from isAsyncArray and other async array functions

  • Added a clause for string in isArray, since string can be iterated too with characters
  • Also added detection for Symbol.asyncIterator for isArray
  • Added isFunction and isObjectEmpty (different than isEmptyObject)
  • Type Extended has been made public!

v1.1.0 release

03 Mar 06:13
ea8bf9b

Choose a tag to compare

  • Bugfix for isEmpty functions (well, not all)
  • Added support for null as a placeholder to undefined (only track() dosent support it)
  • realTypeof was added to fix those annoying typeof limitation! So, instead of
    • Array
      • on normal typeof: "object"
      • on realTypeof: "array"
    • null
      • on normal typeof: "object"
      • on realTypeof: "null"
    • Class
      • on normal typeof: "function"
      • on realTypeof: "class"
  • Trackers (track() and Track object) has been added to listen object changes
  • Detect empty objects (for string, object, and array)

v1.0.5 release

03 Mar 05:41

Choose a tag to compare

v1.0.5 release Pre-release
Pre-release
  • Added support for null as a placeholder to undefined (only track() dosent support it)
  • realTypeof was added to fix those annoying typeof limitation! So, instead of
    • Array
      • on normal typeof: "object"
      • on realTypeof: "array"
    • null
      • on normal typeof: "object"
      • on realTypeof: "null"
    • Class
      • on normal typeof: "function"
      • on realTypeof: "class"
  • Trackers (track() and Track object) has been added to listen object changes
  • Detect empty objects (for string, object, and array)

v1.0.4 doc(fix)

13 Nov 07:57
4e2e743

Choose a tag to compare

Documentation fix for compareRef since there was a migration between the old package @cupglassDEV/object

v1.0.3 doc(fix)

13 Nov 07:44
76e9e1f

Choose a tag to compare

This release only fix the documentation for compareRef

v1.0.2 release

13 Nov 07:38
1cd4ed5

Choose a tag to compare

Release with NEW features

  • Added newRef
  • Rename refCompare to compareRef
  • fix doc