luvit / luv

Bare libuv bindings for lua
Apache License 2.0
832 stars 187 forks source link

Add access(2) constants to the constants table #655

Closed rpigott closed 1 year ago

rpigott commented 1 year ago

fs_access is equivalent to access(2), but this function is useless without the corresponsing access mode constants F_OK, R_OK, W_OK, and X_OK. Let's add these constants to the table.

squeek502 commented 1 year ago

Thanks!

rpigott commented 1 year ago

mode can be specified as a string

I didn't know that! TYVM for the info.