import { Pipe } from './index'; // 随机--抽样丢弃 export const createRandomSamplePipe = function (random: number): Pipe { return function (msg, resolve) { if (typeof random !== 'number') { random = 1; } if (Math.random() < random) { return resolve(msg); } }; };