{{alias}}( value ) Tests if a value is a JavaScript primitive. Parameters ---------- value: any Value to test. Returns ------- bool: boolean Boolean indicating whether value is a JavaScript primitive. Examples -------- > var bool = {{alias}}( true ) true > bool = {{alias}}( {} ) false See Also --------