文件名称:clamp.js:返回将输入值限制在[min <= x <= max]范围内的函数。 (es6)
文件大小:6KB
文件格式:ZIP
更新时间:2024-05-31 02:27:51
JavaScript
lamp.js(用ES6编写) 安装: npm install clamp.js 运行测试 npm test 返回将输入值限制在[min <= x <= max]范围内的函数。 对于数组之类的数据结构很有用。 允许交换最小值和最大值,并且将对其进行纠正。 使用简单数组: import clamp from 'clamp.js' ; [ 1 , 2 , 3 , 4 , 5 ] . map ( clamp ( 0 , 3 ) ) ; // [1,2,3,3,3] 可以与库一起使用(例如 , , Kefir.js )。 例子是用Bacon.js编写的 在frp中: import clamp from 'clamp.js' ; import Bacon from 'baconjs' ; let stream = Bacon . sequentially
【文件预览】:
clamp.js-master
----.eslintrc(104B)
----lib()
--------index.js(927B)
----.npmignore(32B)
----.codeclimate.yml(56B)
----.travis.yml(126B)
----LICENSE(1KB)
----test()
--------test.clamp.js(2KB)
--------test.main.js(57B)
----README.md(2KB)
----.editorconfig(243B)
----.gitignore(71B)
----index.js(794B)
----package.json(2KB)