@opfr/utils-lang 0.0.21 → 0.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/array.d.ts CHANGED
@@ -8,3 +8,4 @@ export declare const shuffle: <T>(array: T[]) => T[];
8
8
  export declare const filterNullAndUndefined: <T>(array: (T | null | undefined)[]) => T[];
9
9
  export declare const includeIf: <T>(array: T[], element: T, include: boolean) => T[];
10
10
  export declare const includeArrayIf: <T>(array: T[], elements: T[], include: boolean) => T[];
11
+ export declare const pickFrom: <T>(array: T[]) => T;
package/dist/emojis.d.ts CHANGED
@@ -162,4 +162,13 @@ export declare const emojis: {
162
162
  item_craft_strange_stone: string;
163
163
  item_craft_tools: string;
164
164
  item_craft_wood: string;
165
+ item_craft_wine: string;
166
+ item_craft_toy: string;
167
+ item_craft_rhum: string;
168
+ item_craft_milk: string;
169
+ item_craft_fruit: string;
170
+ item_craft_sugar: string;
171
+ item_craft_egg: string;
172
+ item_craft_bowl_cereal: string;
173
+ item_craft_beer: string;
165
174
  };