UNPKG

hello_freedom_56

Version:

## 目录结构 ``` +src 源代码目录 +test 单元测试目录 +src/tostring 黑魔法之tostring ```

11 lines (10 loc) 218 B
/** * Created by lenovo on 2017/6/8. */ var My = { sqrt: function(x) { if (x < 0) throw new Error("负值没有平方根"); return Math.exp(Math.log(x)/2); } }; module.exports = My;