>FromYourCode();

All the sources codes

TypeScript
 February 11 2022 at 10:38
#336
public static addClass($class: string, element: string) {
    const elements = $(element);
    if (elements.length > 0) {
      elements.each(function () {
        $(this).addClass($class);
      });
    }
  }
Haxe
 September 27 2016 at 08:07
#309
public var isDialog : Bool;

...

public function isLabelDialog() : Bool
{
if (this.isDialog == true)
return true;
else 
return false;
}