simplex2/fs.moon
Paul Liverman III 311e43ecc1 Squashed 'utility/' content from commit 3616fc8
git-subtree-dir: utility
git-subtree-split: 3616fc80e5a6f6a0739d931118b7f5f3b0efa28e
2018-03-13 02:10:39 -07:00

11 lines
134 B
Plaintext

exists = (file_path) ->
handle = io.open file_path, "r"
if handle
handle\close!
return true
return false
{
:exists
}