From 60deb461b59ae8dbd8071770e96cc0bbcc04de77 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Fri, 11 Aug 2023 00:48:00 +0200 Subject: [PATCH] fix: remove duplicate --- packages/core/signal.mjs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/packages/core/signal.mjs b/packages/core/signal.mjs index d0db0be9f..4087f3a5d 100644 --- a/packages/core/signal.mjs +++ b/packages/core/signal.mjs @@ -191,13 +191,6 @@ export const chooseInWith = (pat, xs) => { */ export const choose = (...xs) => chooseWith(rand, xs); -/** - * Chooses from the given list of values (or patterns of values), according - * to the pattern that the method is called on. The pattern should be in - * the range 0 .. 1. - * @param {...any} xs - * @returns {Pattern} - */ Pattern.prototype.choose = function (...xs) { return chooseWith(this, xs); };