adds integrations with bookish-server, the books API and the google books API, adds functionality for library, searching for books, and displaying renters registered in the system
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import arrayLikeToArray from "./arrayLikeToArray";
|
||||
export default function _maybeArrayLike(next, arr, i) {
|
||||
if (arr && !Array.isArray(arr) && typeof arr.length === "number") {
|
||||
var len = arr.length;
|
||||
return arrayLikeToArray(arr, i !== void 0 && i < len ? i : len);
|
||||
}
|
||||
|
||||
return next(arr, i);
|
||||
}
|
||||
Reference in New Issue
Block a user