I have a method:
deepCopy (destination: any, source: any {...}
and I would like to check if the source
is of any primitive type in ExtJS it would look like Ext.isPrimitive(source)
but I can't find a way to do it in TypeScript.
I have a method:
deepCopy (destination: any, source: any {...}
and I would like to check if the source
is of any primitive type in ExtJS it would look like Ext.isPrimitive(source)
but I can't find a way to do it in TypeScript.