to-upper-case.filter.ts 251 字节 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * @description: 大写转换 * @author ChenRui * @date 2021/4/6 19:45 */ function encode(value: string) { return (value || "").toUpperCase(); } const toUpperCase = (value: string) => { return encode(value); }; export default toUpperCase;