Danack / PHP-to-Javascript

A tool for converting simple PHP objects/code to Javascript, so that code for manipulating objects can be used both server-side and client-side.
Other
104 stars 32 forks source link

instanceof #53

Closed ghost closed 11 years ago

ghost commented 11 years ago
$t = new Foo();
if ($t instanceof Foo){}

instanceof missing

var t = new Foo();
if (t  Foo){}