From d793d7857dae38d8c8699a97161107e8c4931efa Mon Sep 17 00:00:00 2001 From: rolux Date: Sun, 17 Jun 2012 16:40:42 +0200 Subject: [PATCH] add test for Ox.typeOf(localStorage) --- source/Ox/js/Type.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Ox/js/Type.js b/source/Ox/js/Type.js index dcbc2b10..519c6b8d 100644 --- a/source/Ox/js/Type.js +++ b/source/Ox/js/Type.js @@ -364,6 +364,8 @@ Ox.typeOf Returns the type of a value 'object' > Ox.typeOf(new RegExp()) 'regexp' + > Ox.typeOf(localStorage) + 'storage' > Ox.typeOf('') 'string' > Ox.typeOf()