UNPKG

smartobject-js

Version:

SmartObject.js will enable javascript object to have type checking

9 lines (7 loc) 165 B
var anotherFunction = function(str, num){ console.log(typeof str, typeof num) } var test = function(){ anotherFunction.apply(null, arguments) } test("hello", 0);