Commit c11a69c5 c11a69c50fb901ae9af441ad5cab9ed7ff16dbd6 by Mickaël Andrieu

Tagged betterInstanceOf & assertion as 1.1

1 parent 54fb4c03
......@@ -452,6 +452,8 @@ Asserts that the provided input is of the given type::
**Signature:** ``assertInstanceOf(mixed input, Function constructor[, String message])``
.. versionadded:: 1.1
Asserts that the provided input is of the given constructor::
function Cow() {
......
......@@ -27,6 +27,8 @@ Provides a better ``typeof`` operator equivalent, eg. able to retrieve the ``Arr
``betterInstanceOf()``
-------------------------------------------------------------------------------
.. versionadded:: 1.1
**Signature:** ``betterInstanceOf(input, constructor)``
Provides a better ``instanceof`` operator equivalent, is able to retrieve the ``Array`` instance or to deal with inheritance.
......