repl.txt (443B)
1 2 {{alias}}( value ) 3 Tests if a value is a native function. 4 5 Parameters 6 ---------- 7 value: any 8 Value to test. 9 10 Returns 11 ------- 12 bool: boolean 13 Boolean indicating whether value is a native function. 14 15 Examples 16 -------- 17 > var bool = {{alias}}( Date ) 18 true 19 > function beep() {}; 20 > bool = {{alias}}( beep ) 21 false 22 > bool = {{alias}}( {} ) 23 false 24 25 See Also 26 -------- 27