commandToUpperCase function

String commandToUpperCase(
  1. List args
)

Function of str_up command

Implementation

String commandToUpperCase(List args) {
  final String str = expEval(args[0]);
  return str.toUpperCase();
}