Releases: fpereiro/teishi
Releases · fpereiro/teishi
5.1.0
5.0.3
5.0.2
5.0.1
5.0.0
- Breaking change: many functions with very short names have been renamed to slightly longer names that are self-explanatory, to enhance code readability and to make it easier to remember the name of the functions. To upgrade to this version, either rename the functions in your code or create an alias to them. The functions renamed are: 1)
teishi.t
->teishi.type
; 2)teishi.l
->teishi.clog
; 3)teishi.c
->teishi.copy
; 4)teishi.p
->teishi.parse
; 5)teishi.s
->teishi.str
. teishi.last
now accepts an optional second argument to instruct the function to return the nth argument from the end of the array.- Some improvements to the readme.
- Upgrade dale v5.0.2 -> v5.0.3.
4.0.0
3.14.1
3.14.0
- Add
teishi.last
, a function that returns the last element of an array or anarguments
pseudo-array. teishi.c
: fix incorrect detection of circular references (some non-circular objects were being detected as circular if there was more than one reference to them within the copied object); instead of printing the path of the circular object, simply print[Circular]
instead.