## 题目要求 * 在当前路径的`camelcase`下,找到`index.js`,并补全实现代码 * 再次执行`fe`,选择该测试题目,然后选择"检验答题结果" * 检验自己的测试结果 ## 提示: ### 你的`camelcase`模块应该完成如下功能: ```javascript const camelcase = require('camelcase'); console.log(camelcase('HELLO WORLD')); // helloWorld console.log(camelcase('HELLO WORLD')); // helloWorld console.log(camelcase('drunkman')); // drunkman console.log(camelcase('hi----you')); // hiYou ```