文件名称:choose-randomly-by-ratio:按比例随机选择一个值
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-09 19:17:48
JavaScript
按比例随机选择 从集合中按比例随机选择一个值 用法 var chooseRandomlyByRatio = require('choose-randomly-by-ratio'); // This value will be 'x'(1.0/4.5) or 'y'(1.5/4.5) or 'z'(2.0/4.5) var value = chooseRandomlyByRatio([['x', 1], ['y', 1.5], ['z', 2]]); // It's possible to write like this var value = chooseRandomlyByRatio({ x: 1, y: 1.5, z: 2 }); 安装 npm install choose-randomly-by-ratio 或者,您可以通过在浏览器中使用。
【文件预览】:
choose-randomly-by-ratio-master
----.travis.yml(119B)
----index.js(1KB)
----package.json(682B)
----test()
--------tests.js(3KB)
----LICENSE(1KB)
----.gitignore(347B)
----README.md(827B)