tools.wxs 93 B

1234567
  1. function toLower(str) {
  2. return str.toLowerCase()
  3. }
  4. module.exports = {
  5. toLower: toLower
  6. }