Sha256: 1198e692585efd95d1dd477721cbbf5b8e9985864ad727f61f483addc688dbe7
Contents?: true
Size: 379 Bytes
Versions: 100
Compression:
Stored size: 379 Bytes
Contents
define( [ "../var/class2type", "../var/toString" ], function( class2type, toString ) { "use strict"; function toType( obj ) { if ( obj == null ) { return obj + ""; } // Support: Android <=2.3 only (functionish RegExp) return typeof obj === "object" || typeof obj === "function" ? class2type[ toString.call( obj ) ] || "object" : typeof obj; } return toType; } );
Version data entries
100 entries across 87 versions & 13 rubygems