パルカワ2

最近はFlutterをやっています

2015-02-26から1日間の記事一覧

Hash::FilterというPerlモジュールを書きました。

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"} なんかもう…