hisaichi5518/hash-filter · GitHub
use strict; use warnings; use Hash::Filter; my $f = Hash::Filter->new(filters => ["password"]); $f->filter({password => "12345", hoge => "hoge"}); #=> {password => "[FILTERED]", hoge => "hoge"}
なんかもうありそうだなって思いながらも書いた。