kyouka 1.3.5 → 1.3.6

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/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  <img src="./assets/logo.png" width="200">
3
3
  </p>
4
4
  <p>
5
- <img alt="Version" src="https://img.shields.io/badge/version-1.3.5-blue.svg?cacheSeconds=2592000" />
5
+ <img alt="Version" src="https://img.shields.io/badge/version-1.3.6-blue.svg?cacheSeconds=2592000" />
6
6
  <a href="#" target="_blank">
7
7
  <img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg" />
8
8
  </a>
package/dist/kyouka.d.ts CHANGED
@@ -120,6 +120,6 @@ declare const kyoka: {
120
120
  dateRange: (start: Date, end: Date, step?: number) => Generator<Date, void, unknown>;
121
121
  frequencies: (arr: any[]) => any;
122
122
  countOccurrences: (arr: any[], val: any) => any;
123
- loopSlice: (arr: any, start: number, end: number) => any;
123
+ loopSlice: (arr: any[], start: number, end: number) => any[];
124
124
  };
125
125
  export default kyoka;
@@ -4,5 +4,5 @@
4
4
  * @param start
5
5
  * @param end
6
6
  */
7
- declare const loopSlice: (arr: any, start: number, end: number) => any;
7
+ declare const loopSlice: (arr: any[], start: number, end: number) => any[];
8
8
  export default loopSlice;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kyouka",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "",
5
5
  "main": "./dist/kyouka.js",
6
6
  "types": "./dist/kyouka.d.ts",