* Gets or sets the loader instance to use for data file loading. A * loader object must provide a "load" method for loading files and a * "sanitize" method for checking URL/filename validity. Both methods * should accept a URI and options hash as arguments, and return a Promise * that re
(_)
| 108747 | * @return {object|Dataflow} - If no arguments are provided, returns |
| 108748 | * the current loader instance. Otherwise returns this Dataflow instance. |
| 108749 | */ loader (_) { |
| 108750 | if (arguments.length) { |
| 108751 | this._loader = _; |
| 108752 | return this; |
| 108753 | } else return this._loader; |
| 108754 | }, |
| 108755 | /** |
| 108756 | * Gets or sets the locale instance to use for formatting and parsing |
| 108757 | * string values. The locale object should be provided by the |