rule.go 140 B

12345678910
  1. package flect
  2. type ruleFn func(string) string
  3. type rule struct {
  4. suffix string
  5. fn ruleFn
  6. }
  7. func noop(s string) string { return s }