/lilswf

A light, compact and simple JavaScript Flash utility.

Primary LanguageJavaScriptMIT LicenseMIT

 _ _ _           ___ 
| |_| |___ _ _ _|  _|
| | | |_ -| | | |  _|
|_|_|_|___|_____|_|  
                    
A light, compact and simple JavaScript Flash utility.

>lilswf.has
true

>lilswf.raw
"Shockwave Flash 10.0 r42"

>lilswf.numbers
[10, 0, 42]

>lilswf.number
1000000042

"=="
>lilswf.eq(10) //OR "10".
true
>lilswf.eq(10, 0) //OR "10.0".
true
>lilswf.eq(10, 0, 42) //OR "10.0.42".
true

">="
>lilswf.gte(10) //OR "10".
true
>lilswf.gte(10, 0) //OR "10.0".
true
>lilswf.gte(10, 0, 42) //OR "10.0.42".
false

">"
>lilswf.gt(10) //OR "10".
false
>lilswf.gt(10, 0) //OR "10.0".
false
>lilswf.gt(10, 0, 42) //OR "10.0.42".
true

"<="
>lilswf.lte(10) //OR "10".
true
>lilswf.lte(10, 0) //OR "10.0".
true
>lilswf.lte(10, 0, 42) //OR "10.0.42".
true

"<"
>lilswf.lt(10) //OR "10".
false
>lilswf.lt(10, 0) //OR "10.0".
false
>lilswf.lt(10, 0, 42) //OR "10.0.42".
false