add test for Ox.typeOf(localStorage)

This commit is contained in:
rolux 2012-06-17 16:40:42 +02:00
parent c9474ee04e
commit d793d7857d

View file

@ -364,6 +364,8 @@ Ox.typeOf <f> Returns the type of a value
'object' 'object'
> Ox.typeOf(new RegExp()) > Ox.typeOf(new RegExp())
'regexp' 'regexp'
> Ox.typeOf(localStorage)
'storage'
> Ox.typeOf('') > Ox.typeOf('')
'string' 'string'
> Ox.typeOf() > Ox.typeOf()