What Does If(file.is_image) Mean In Javascript?
And what would be the equivalent for sound?
Solution 1:
Sounds like somebody created a custom type and is_image
is one of its members.
My guess would be that it is checking to see if the file is an image file and returning true if it is and false if it isn't.
Post a Comment for "What Does If(file.is_image) Mean In Javascript?"