How do i detect if its a certain month

How do i detect if its a certain month like if its december then it activates a function if its not december then nothing happens.

With os.date().

if os.date("%B") == "December" then
    -- Do stuff
end
5 Likes