Results 16 comments of K-walker

`arr.sort()` 等同于 `arr.sort( (a , b) => a.charCodeAt() - b.charCodeAt() )`

``` function fun (s) { var a = 97 ; var z = a + 25 ; var A = 65 ; var Z = A + 25; const result...

完善版: ```javascript function upperOrLower (s) { return Array.from(s).map( char => { if(/[a-z]/.test(char)) return char.toUpperCase(); if(/[A-Z]/.test(char)) return char.toLowerCase(); return char ; }).join('') } console.log(upperOrLower('A@nD1!eO')) ```

我已经解决了,我在 ./router/index.js 中导入组件的方式错了 `const Comp = import('./component/comp')` 这样导入就会报错。

@chuangker 我想请教一下,为什么进入docker容器中无法使用sudo命令,我想进入容器修改一些文件

@chuangker 话说我按照你们说的配置,再 production.json 中修改了 fe.publishPath 好像根本没有起作用啊

@chuangker ```shell easy-mock@7ef4e4a61475:~/easy-mock$ apt-get install vi E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?...

求整个vue 版本的 designable

@yinLiangDream 您好,我有个关于UI打包库的配置问题想请教下,我用的官方的` taro-ui-sample `这个库来开发自己的组件,但是我开启了 `css module ` 在打包`weapp`组件的时候,好像有问题,如下图: ![image](https://user-images.githubusercontent.com/10557092/68557864-1e56a880-0472-11ea-915e-1f40736a6c1e.png) 请问下,是不是开发组件的时候,不能开启 css module 功能啊,求指教,谢谢

> > 您好,我有个关于UI打包库的配置问题想请教下,我用的官方的`taro-ui-sample`这个库来开发自己的组件,但是我开启了 `css module ` 在打包`weapp`组件的时候 > > https://nervjs.github.io/taro/docs/css-modules.html#docsNav 有配置相关内容吗 ![image](https://user-images.githubusercontent.com/10557092/68559083-ad65bf80-0476-11ea-8c31-11c48b96175f.png) 已经配置过了,H5打包是可以的,就是weapp不行