(x)
| 17777 | var slice = Array.prototype.slice; |
| 17778 | |
| 17779 | function array(x) { |
| 17780 | return typeof x === "object" && "length" in x |
| 17781 | ? x // Array, TypedArray, NodeList, array-like |
| 17782 | : Array.from(x); // Map, Set, iterable, string, or anything else |
| 17783 | } |
| 17784 | |
| 17785 | function Linear(context) { |
| 17786 | this._context = context; |