UNPKG

variable-type

Version:

Runtime type checking for variable and similar objects.

11 lines (10 loc) 257 B
/** * Created by hustcc on 17/08/01. */ /** * what( v ) -> String : get what is the type of the input var. * @param v: the var which want to typeof * @returns {string} * https://github.com/hustcc/what.js */ export default function what(v: any): any;