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

statement 2 #43

Closed ghost closed 11 years ago

ghost commented 11 years ago
$ext=1;
if (!$ext){}

is converted to

var ext=1;
if (ext){}

exclamation mark is missing