Sha256: 05d3291ab354b1302bcaaf4ca98ad678c72387eb181354706a60805beadd0c95
Contents?: true
Size: 479 Bytes
Versions: 62
Compression:
Stored size: 479 Bytes
Contents
define(function() { /** * Checks if the object is a primitive */ function isPrimitive(value) { // Using switch fallthrough because it's simple to read and is // generally fast: http://jsperf.com/testing-value-is-primitive/5 switch (typeof value) { case "string": case "number": case "boolean": return true; } return value == null; } return isPrimitive; });
Version data entries
62 entries across 62 versions & 1 rubygems