1 Type.isNamespace = function Type$isNamespace(object) {
5 var e = Function._validateParams(arguments, [
6 {name: "object", mayBeNull: true}
7 ]);
8 if (e) throw e;
9 if ((typeof(object) === 'undefined') || (object === null)) return false;
10 return !!object.__namespace;
11 }